1.auto_increment 不支持varchar類型
修改mysql表的字段為自增長:alter table newcar change id id int(11) not null AUTO_INCREMENT;
2查看表? describe table_name;
3.查看表結(jié)構(gòu)的詳細(xì)信息: show create table? table_name;
4drop table table_name; 刪除表
5. 修改表
a.修改表名? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? alter table old_table_name rename [to] new_table_name;
b.增加字段? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? alter table table_name add 屬性名 屬性類型; //在表的最后一個位置增加字段扔字。
alter table table_name add 屬性名 屬性類型 first; //在表的第一個位置增加字段
alter table table_name add 屬性名 屬性類型 after 已有的屬性名湿弦; //在關(guān)鍵字所指的屬性后邊增加字段
c.刪除字段? alter table table_name drop 屬性名蚓胸;
d.修改字段
修改字段的數(shù)據(jù)類型: alter table table_name modify 屬性名 數(shù)據(jù)類型;
修改字段的名稱 :alter table table_name change 舊屬性名 新屬性名 舊數(shù)據(jù)類型库正;
同時修改字段的名稱和數(shù)據(jù)類型 :alter table table_name change 舊屬性名 新屬性名 新數(shù)據(jù)類型稳诚;