码迷,mamicode.com
首页 > 数据库 > 详细

sql语句与 数据库

时间:2016-08-19 06:20:59      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:

create  table  wyx(

xh int primary key,

xm varchar(20) not null,

nl int,

zcrq timestamp default current_timestamp,#日期格式

sfzh char(18) unique,

bj varchar(20) not null,

xb enum(‘男‘,‘女‘)

);

#删表 drop table wyx;

create table kcb(

kch int primary key,

kcm varchar(20) not null

);

create table cjb(

id int auto_increment primary key,

xh int ,foreign key(xh) references wyx(xh),

cj int not null,

kch int ,foreign key(kch) references kcb(kch)

);

sql语句与 数据库

标签:

原文地址:http://www.cnblogs.com/wangyinxu/p/5786101.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!