显示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;
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/281335.html