一、通过SSMS为表添加数据
点击编辑前200行,编辑数据
二、使用SQL语句添加数据
格式:
insert into student values('0001','张三',18,'男','文学院')
同时添加多条数据
使用
insert into student(sno, sname, sage, ssex, sdept)
和union关键字
- insert into student(sno, sname, sage, ssex, sdept)
- select '0001', '张三', 18, '男', '文学院' union
- select '0002', '李四', 19, '女', '理学院' union
- select '0003', '王五', 20, '男', '文学院' union
- select '0004', '赵六', 21, '女', '理学院'
- --把一个表的数据插入另外一个表
- --(1)要插入的表不存在
- select * into student_new from student where sex='男'
- --把表student中性别为'女'的学生信息插入到表student_back(已存在)中
- insert into student_back(bno, bname, bage, bsex, bdept)
- select sno, sname, sage, ssex, sdept from student
- where ssex='女'
导入Excel等数据
遇到此弹窗, 去下载该程序