--设备丢失故障表. CREATE TABLE lost( lost_id int IDENTITY PRIMARY KEY,--编号 Computer_id int NOT NULL,--设备编号 student_num int,--学号 users_id int not null,--处理人编号 time1 datetime not null,--时间 c int not null default 0,--丢失还是故障,0故障,1丢失 m float default 0,--赔偿金额 lost_note text --说明) 转载于:https://www.cnblogs.com/hzuIT/articles/737224.html