摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--7、学期表create table term( term_id int identity Primary key,--学期编号 term_name varchar(10) not null,--学... 阅读全文
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--6、专业信息表create table Specialized( Specialized_id int identity Primary key,--专业编号 Specialized_name... 阅读全文
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--5、设备状态管理create table Condition( Condition_id int Identity Primary Key,--状态编号 Condition_name varc... 阅读全文
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--4、实验室设备管理create table Computer( Computer_id int Identity Primary key,--设备编号 Computer_name varchar(... 阅读全文
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--3、实验室管理create table room( room_id int Identity Primary key,--实验室编号 room_name varchar(50) not null,... 阅读全文
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--2、学生信息create table student( student_num int Primary key,--学号 student_name char(50) not null,--姓名... 阅读全文
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--1、用户信息create table users( users_id Int Identity Primary key,--用户编号 users_name varchar(50) not null... 阅读全文
摘要:
1、创建数据库 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1User master2go3Create DataBase lab4On5 PRIMARY(NAME=lab_data,FILENAME='E:\我的文档\Visual Studi... 阅读全文