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

SQLServer更新语句要注意

时间:2014-11-26 18:17:42      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   使用   sp   strong   on   art   log   

在SQLServer中 update语句中对于表不能使用别名

eg:update table a set a.column="" where ...

这样在SQLServer中是不对(在oracle中可以),不能对表使用别名,这是为什么呢?

这是因为我们一直写的update更新语句都是简写过的,实际上正确的应该是这样的:

 update t set t.Column=‘‘ from table t where ...

 

参考:http://blog.csdn.net/zyzlywq/article/details/6753648

 

参考http://www.cnblogs.com/KevinYang/archive/2010/07/09/1774063.html

 

SQLServer更新语句要注意

标签:blog   http   ar   使用   sp   strong   on   art   log   

原文地址:http://www.cnblogs.com/mengzhixingping/p/4123430.html

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