登录 注册
当前位置:主页 > 资源下载 > 10 > 备份图书管理系统的数据

备份图书管理系统的数据

  • 更新:2024-06-03 15:38:50
  • 大小:1.04MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:MySQL - 数据库
  • 格式:DOC

资源介绍

图书管理系统数据备份-------------往学生表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