Mysql ---3
1.创建表:注意:` ` ‘ ‘ , 三种符号 if not exists primary key(`id`)engine= innodb charset=utf8
create table if not exists `stu`(
`id` int(4) auto_increment comment ‘学号‘,
`name` varchar(20) not null default ‘名字‘ comment ‘姓名‘,
`sex` varchar(2) default null comment ‘性别‘,
primary key(`id`)
)engine=innodb default charset=utf8
2.show create database 库名 数据库结构
show create table 表名 表结构
desc student 表字段
3.数据库引擎InnoDB支持事务、外键约束 Myisam
相关推荐
silencehgt 2020-09-07
幸福ITman汪文威 2020-09-05
wenjieyatou 2020-07-30
jiangziya 2020-07-05
bluetears 2020-07-05
CoderToy 2020-11-16
bianruifeng 2020-11-16
云中舞步 2020-11-12
敏敏张 2020-11-11
暗夜之城 2020-11-11
好记忆也需烂 2020-11-11
Coder技术文摘 2020-09-29
huacuilaifa 2020-10-29
Gexrior 2020-10-22
lpfvip00 2020-10-07
云中舞步 2020-09-11
康慧欣 2020-09-10
sofia 2020-09-03