MySQL复习笔记I_MySQL
程序员文章站
2022-06-04 09:00:28
...
bitsCN.com
MySQL复习笔记I
[sql] #查看包含哪些数据库 show databases; #使用名为 test 的数据库 use test; #最简单的(tinyint 默认是 3 个字节,但可以显式地指定为 1 个字节;unsigned 须跟在后面) create table tb0 ( id int not null, name char(20), age tinyint(1) unsigned default 0 ); #带主键的 create table tb1 ( id int not null primary key, name char(20) ); #复合主键 create table tb2 ( id int not null, name char(20), primary key (id, name) ); #带默认值的(check只是个摆设,mysql会直接忽略之) create table tb3 ( id int not null default 0 primary key, name char(20) default '1', sex char(1) not null check(sex in ('M', 'F')), age tinyint not null check(age >= 0 and age
bitsCN.com
上一篇: php unset删除数组变量实现方法
下一篇: Blankspider PHP 爬虫