创建数据库create database 数据库名称;
创建表create table 表名(字段1 类型 约束,字段2 类型 约束,字段3 类型 约束........);
删除表drop table 表名;
对表添加列alter table 表名 add 列明 类型 约束;
修改列类型alter table 表名 alter column 被修改的列名 新类型 约束;
删除一类列 alter table 表名 drop column 列明;
添加约束alter table 表名 add constraint 约束名称 约束;
删除约束alter table 表名 drop 约束名称;
添加外键约束 alter table 表名 add constraint 表名 foreign key (列名) refereces 表名(列明) on delete cascade;