首页 > 代码库 > 18.一次性插入多条记录
18.一次性插入多条记录
use MySchool--一次性插入多条记录--insert into grade values(4,‘工具‘)insert into Grade (GradeName)select ‘aaa‘ union all --只有全部写了union all才不会去除重复记录select ‘aaa‘ union allselect ‘aaa‘ union allselect ‘aaa‘ union allselect ‘bb‘ union allselect ‘bb‘ --union 最后一句不需要加union all,在union里面不能写Defaultselect * from Grade---一次性插入多条记录--1。select 字段列表/* into 目的表 from 源表会生成一个与查询字段相同结构的新表,也就意味着新表不能先存在,它是系统生成的select classname into newGrade from Gradetruncate table grade--2. insert into 目的表名select * from 源表:目的表必须先存在,如果没有存在,就报错了--select classname into Grade from newGradeinsert into Grade select * from newgradeselect * into newGrade from Grade--使用select into from 生成的新表字段的属性都会消失,除了标识列属性之外select * from newGrade
18.一次性插入多条记录
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。