文件名称:图书管理系统数据备份
文件大小:1.04MB
文件格式:DOC
更新时间:2014-05-02 10:26:10
图书管理系统数据备份
图书管理系统数据备份-------------往学生表S中插入一列"专业号",其值等于学号中代表专业的位的值 use LibrarySystem go alter table Student add SMajorNo varchar(50) go declare @sno char(10),@total int,@i int select @total=count(*),@i=1 from Student while(@i<=@total) begin