欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

MySQL复习笔记I_MySQL

程序员文章站 2022-05-30 15:28:57
...
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