CREATE DATABASE Students
GO
USE Students
CREATE TABLE stu
(
number varchar(6) primary key, --学号
name varchar(8) null, --姓名
sex bit NULL, --性别
birthday smalldatetime NULL, --生日
height real NULL --身高
)
GO
INSERT stu VALUES ('000001','黎明',1,'1976-11-23',1.78)
INSERT stu VALUES ('000002','赵怡春',0,'1979-12-31',1.77)
INSERT stu VALUES ('000003','张富平',1,'1975-05-20',1.80)
INSERT stu VALUES ('000004','白丽',0,'1976-01-30',1.75)
INSERT stu VALUES ('000005','牛玉德',1,'1979-03-17',1.74)
INSERT stu VALUES ('000006','姚华',0,'1972-10-01',1.75)
INSERT stu VALUES ('000007','李南',1,'1977-10-01',1.76)
GO
[此贴子已经被作者于2010-12-12 08:19:58编辑过]