mysql基本更新语句:
修改表名:
alter table 表名 rename to 新表名
修改字段长度:
alter table 表名 modify column 字段名 varchar(20)
添加字段:
alter table 表名 add 字段名 varchar(50)
更新字段值:
update 表名 set 字段名 = '新值' where 条件
alter table 表名称 modify 字段 string例如
use aynu
alter table xsb modify 姓名 char(10)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)