当前位置:   article > 正文

sql server 对表的操作,插入,删除更新_sqlserver添加到表操作

sqlserver添加到表操作

1.单条数据插入

--1.单条数据 ---insert into
--方法一
insert into producttype(typename)  --insert into 表名(列名,列名....)  values 值,值,值....
values ('工具类')
--方法二
insert producttype(typename)          --into可以省略   into表名(列名,列名.....) select 值,值,值....
select '鞋类'

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

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

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

test表是新创建的表

3.克隆表插入

--3.克隆数据  将一张表的数据复制到另外一张表
--方法一  目标表在数据库中已经存在
insert into test(mname)  --目标表
select typename from producttype  --原表
--方法二 目标表之前的数据库已经存在,在执行的时候自动创建
select typename into test2 --目标表
from producttype           --原表
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/612359
推荐阅读
相关标签
  

闽ICP备14008679号