轉自:http://www.maomao365.com/?p=6973
摘要:
在sql指令碼編寫中,如果需要在update delete 中使用表別名的方法,必須按照一定的規則編寫,否則將會出現相應的異常資訊,如下所示:
實驗環境:sqlserver 2008 R2
---update 表別名的寫法 update [別名] set [別名].[欄位] =[欄位值] from [表名] as [表別名] where [條件] ---delete 表別名的寫法 delete [別名] set [別名].[欄位] =[欄位值] from [表名] as [表別名] where [條件]