首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

sql脚本批量安插

2012-09-09 
sql脚本批量插入Insert into Student(Sno,Sname,Ssex,Sage,sdept) select 95001,李勇,男,20,CS

sql脚本批量插入
Insert into Student(Sno,Sname,Ssex,Sage,sdept)
select '95001','李勇','男','20','CS' union all
select '95002','刘晨','女','19','IS' union all
......
select '96003','李四','男',18,'IS'

热点排行