数据库
首页 > 数据库> > mysql 命令创建表格

mysql 命令创建表格

作者:互联网

显示mysql相关显示命令:

show databases;   #显示数据库创建的数据库名
use [database name] #后 show tables;查看table 数据信息
describe [table name] #显示表格信息
show create table [table name] #显示创建的详细信息
select *from [table name] #查表

命令创建mysql table `student`:

create table `student`(
`id` int(4) not null auto_increment comment '学号',
`name` varchar(4) not null default '匿名' comment '姓名',
`sex` varchar(1) not null default '男' comment '性别',
primary key(`id`)
)engine=innodb default charset=utf8;

 

标签:comment,创建表格,name,show,命令,mysql,table,null
来源: https://www.cnblogs.com/cokelike/p/16609054.html