这样就可以得到自增字段id的最大值为100。 使用PHP查询自增字段最大值 除了直接在MySQL命令行中查询外,我们还可以通过PHP程序来查询自增字段的最大值。以下是一个简单的PHP程序示例: <?php$servername="localhost";$username="username";$password="password";$dbname="database_name";// 创建连接$conn=newmy...