1.创建
create table 表名( 列名1 数据类型 约束条件, 列名2 数据类型 约束条件, 列名3 数据类型 约束条件, ... 列名n 数据类型 约束条件, primary key (); foreign key () references 其他表表名() );
2.修改
/*增加列*/ alter table antibotepl add `del` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除'; /*修改列,名字由schema改为attributeTypes*/ ALTER TABLE cep_schema change `schemas` `attributeTypes` varchar(4085) NOT NULL DEFAULT '[]' COMMENT 'schema json array';
3.删除
drop table Student
4.查看
show create table table_name;