mysql將id重新排列的方法:1、使用column計數【alter table tablename drop column id】;2、使用increment排列【alter table tablenam auto_increment】。
mysql將id重新排列的方法:
使用mysql時,通常表中會有一個自增的id字段,但當我們想要將表中的資料清空重新添加資料時,希望id重新從1開始計數,用以下兩種方法均可:
#方法一:
alter table tablename drop column id; alter table tablename add id mediumint(8) not null primary key auto_increment first;
方法二:
alter table tablename auto_increment=0
方法二不會清空已有數據,操作比較靈活,不僅可以將自增值歸零,也適用於刪除大量連續行後,重新設定自增值並插入新的數據;或從新的值開始,當然不能和已有的衝突。
$sql="delete from $table_vote"; mysql_query($sql, $link); $sql="alter table $table_vote auto_increment=1"; mysql_query($sql, $link);
更多相關免費學習推薦:##mysql教學(影片)
以上是mysql如何將id重新排列的詳細內容。更多資訊請關注PHP中文網其他相關文章!