① 將自增id變為連續
alter table tablenamedrop id; -- 先刪除主鍵
alter table tablename add id
int(14) not null after klinetype ; -- 新增新的一列(在klinetype列的後面)
alter table tablename modify column id
int(14) auto_increment,add primary key(id); -- 重新設定自增主鍵
②在進行刪除操作時候需要修改mysql的保護模式
set sql_safe_updates=0;
③索引與主鍵最主要的差別:
列設定為主鍵之後,非同步插入的時候可以保證順序,但是設為索引就不會
④建立表的時候可以設定自增id的起始值
create table aa(id int(14) auto_increment primary key) auto_increment=33333;
mysql相關操作 mysql 相關操作
1 登入 mysql u root p 2 檢視當前有的資料庫 show databases 3 建立資料庫 create database 資料庫名 4 操作 使用 資料庫 use 資料庫名 5 檢視有哪些表 show tables 6 建立表 create table 表名 7 刪除表 drop...
mysql 的相關操作 mysql 相關操作
mysql u root p 回撤後輸入密碼 123456,進入mysql 資料庫簡單操作 1 建立資料庫 create database 資料庫名稱 2 檢視資料庫 show databases 3 刪除資料庫 drop database 資料庫名稱 4 開啟資料庫 use 資料庫名稱 資料表簡單...
mysql 的相關操作 MySQL相關操作知識
1 解決客戶端聯不上mysql伺服器的問題 grant all privileges on to root identified by with grant option flush privileges 2 登陸mysql mysql u root p 123456 3 檢視所有資料庫 show ...