码迷,mamicode.com
首页 > 数据库 > 详细

SqlServer 数据库添加临时表

时间:2015-05-14 15:41:47      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:


select  字段1,字段2,字段3 into tempname  form  table  where table.id=1;

 

这个会给tempname 表中自动生成  字段1,字段2,字段3  三个字段以及值。

 

修改表字段值,根据nid
update tablename set 字段1=tb.ssm from ( select  字段 as ssm  from table2 ) tb
where tbalename.nid=tb.nid

 

给表添加字段


alter table 表1_20150513
add 字段1 int

alter table 表1_20150513
add 字段2 decimal(18,2)

alter table 表1_20150513
add 字段3 decimal(18,2)

alter table 表1_20150513
add 字段4 decimal(18,2)

alter table 表1_20150513
add 字段5 varchar(50)

SqlServer 数据库添加临时表

标签:

原文地址:http://www.cnblogs.com/wlzhang/p/4503303.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!