赞
踩
1.单条数据插入
--1.单条数据 ---insert into
--方法一
insert into producttype(typename) --insert into 表名(列名,列名....) values 值,值,值....
values ('工具类')
--方法二
insert producttype(typename) --into可以省略 into表名(列名,列名.....) select 值,值,值....
select '鞋类'
2.多条插入
--一次性插入多条 批量插入
--方法一
insert into producttype(typename)
values ('工具类1'),('工具类2'),('工具类3'),('工具类四')
--方法二
insert test(id,mname,age) --insert test(列名,列名,列名)
select 1,'admin',23 union --插入数据 字符串类型要加'' 数据之间用union链接
select 2,'aaaa',24 union
select 3,'bbbb',25 union
select 4,'cccc',26 union all --union有去重的作用 union all可以有重复
select 5,'dddd',27 --最后一行不用加union
test表是新创建的表
3.克隆表插入
--3.克隆数据 将一张表的数据复制到另外一张表
--方法一 目标表在数据库中已经存在
insert into test(mname) --目标表
select typename from producttype --原表
--方法二 目标表之前的数据库已经存在,在执行的时候自动创建
select typename into test2 --目标表
from producttype --原表
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。