常用sql语句

delete from 表名;
truncate table 表名;

delete from命令格式:delete from 表名 where 表达式

查询表的字段信息
desc 表名称;



# 语法
alter table 表名称 change 字段原名称 字段新名称 字段类型 [是否允许非空];
 
# eg.
# 修改表expert_info中的字段birth,允许其为空
alter table expert_info change birth birth varchar(20) null;

# 语法
 alter table table_name add column column_name type default value; type指该字段的类型,value指该字段的默认值
 
# eg.
alter table mybook add column publish_house varchar(10) default '';


#删除字段
alter table form1 drop column 列名;

你可能感兴趣的:(常用sql语句)