sql语句
-- 查询所有数据库 show databases ; -- ddl:表结构 -- 创建:基本语法(无约束) -- 注释:comment 'id,唯一标识' create table tb_user( id int comment 'id,唯一标识', username varchar(20) comment '用户名', name varchar(10) comment '姓名', age int comment '年龄', gender char(1) comment '性别' ) comment '用户表'; -- 创建:基本语法(有约束) create table tb_user( id int primary key auto_increment comment 'id,唯一标识', username varchar(20) not null unique comment '用户名', name varchar(10) not null comment '姓名', age tinyint unsigned comment '年龄', gender char(1) default '男' comment '性别' ) comment '用户表'; -- ddl查询 -- 查看表结构 show tables ; -- 查看指定表结构 desc tb_emp; -- 查看指定表的建表语句 show create table tb_emp; -- ddl:修改表结构 -- 为表tb_emp添加字段qq varchar(11) alter table tb_emp add qq varchar(11) comment 'QQ'; -- 修改tb_emp字段类型qq varchar(13) alter table tb_emp modify qq varchar(13) comment 'QQ'; -- 修改tb_emp字段名qq为qq_num varchar(13) alter table tb_emp change qq qq_num varchar(13) comment 'QQ'; -- 删除tb_emp的qq_num字段 alter table tb_emp drop column qq_num; -- 将tb_emp表名修改为emp rename table tb_emp to emp; -- ddl删除表 drop table if exists tb_emp;
标签:comment,qq,varchar,--,idea,库表,emp,sql,tb From: https://www.cnblogs.com/yansans/p/18310077