标签: php
$sql2 = mysql_query("select MAX(column1) FROM sampledb"); while($iii=mysql_fetch_row($sql2)) { $iii['MAX(column1)']; } $numplus = $iii+1; echo"$numplus";
我是新手请帮帮我T_T
答案 0 :(得分:2)
您在这里寻找的是the AUTO_INCREMENT column attribute,它指示MySQL自动使用主键的下一个可用值。
AUTO_INCREMENT