SQL语句 DDL

SQL语句 DDL

DDL:

alter:

​ 添加字段:alter table add [colum] 字段名 数据类型 约束
​ 修改字段:alter table 表名 change [colum] 原字段 新字段 数据类型 约束
​ modsty 只改类型约束
​ modsty 字段名 数据类型 约束

​ 改表名:alter table 旧表名 raname 新表名

​ 加字段:alter table add 字段名 数据类型 约束

​ 主键:alter table 表名 constraint 主键名 primary key 表名

​ 外键:alter table 表名 constraint 外建名 fireign fey(外键字段) references 字段

​ 重合主键:alter table 表名 constraint 主键名 primary key 表名(字段1,字段2)

​ alter tabnle 表名 drop 字段名;

create:

​ 创建数据库:create database 数据库名;

​ 创建表:create table [if exists] 表名(字段 数据类型 约束);

drop:

​ 删除数据库:drop database 数据库名;

​ 删除表:drop table [if exists] 表名;

你可能感兴趣的:(java)