mysql-DDL
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql-DDL相关的知识,希望对你有一定的参考价值。
列名的修饰
unsigned
auto_increment
default
comment
not null
null
unique
index
key
primary key
auto_increment 必须制定为 primary key
sql语句的运算符
= 赋值和判断都是
!= <>
< > <= >=
OR
AND
BETWEEN...AND
IN
NOT IN
sql语句的分类
DDL
show databases;
use 数据库名;
create database 数据库名;
drop database 数据库名;
创建数据表结构
create table 表名 (
列名 列类型 其他的关键词,
...
列名 列类型 其他的关键词
);
show tables;
desc 表名;
show create table 表名;
drop table 表名;
修改表的字段属性
alter table 表名 modify 字段名 类型 字段修饰;
修改表的字段的整个属性(包括字段)
alter table 表名 change 原字段 新字段 类型 字段修饰;
删除一整列
alter table 表名 drop 字段名;
添加一整列
alter table 表名 add 新字段 类型 字段修饰 after 原字段名;
重命名表名
alter table 原表名 rename [to] 新表名;
以上是关于mysql-DDL的主要内容,如果未能解决你的问题,请参考以下文章