摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--课程表create table sub( sub_id int identity Primary key,--课程编号 sub_name varchar(100) not null,--课程名...
阅读全文
posted @ 2007-05-06 18:02
石川
阅读(236)
推荐(0)
编辑
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--设备丢失故障表. CREATE TABLE lost( lost_id int IDENTITY PRIMARY KEY,--编号 Computer_id int NOT NULL,...
阅读全文
posted @ 2007-05-06 18:01
石川
阅读(145)
推荐(0)
编辑
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--预约设备信息create table reserve ( reserve_id int identity Primary KEY,--编号 Computer_id int not null,-...
阅读全文
posted @ 2007-05-06 18:01
石川
阅读(162)
推荐(0)
编辑
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--使用日志create table useInfo( useInfo_id int identity Primary KEY,--编号 Computer_id int not null,--设备编号...
阅读全文
posted @ 2007-05-06 17:49
石川
阅读(173)
推荐(0)
编辑
摘要:
--9、上机设置表create table online( online_id int identity Primary key,--设置编号 online_value varchar(4) not null,--上机价格 online_overtake1 varchar(4) not null,--超过多长时间按一个小时计算 online_overtake2 varchar(4) not...
阅读全文
posted @ 2007-05-06 17:48
石川
阅读(158)
推荐(0)
编辑
摘要:
--8、上课时间对应表create table attend( attend_id int identity Primary key,--上课时间编号 time1 varchar(10) not null,--起始时间 time2 VARCHAR(10) NOT NULL,--结束时间 num int not null --节次 1,2,3,4,5,6)
阅读全文
posted @ 2007-05-06 17:48
石川
阅读(176)
推荐(0)
编辑