首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

出现表不明确解决方案

2012-01-19 
出现表不明确updatecardinfosetpreamtb.curamtfromcardinfoa,cardinfobwherea.cardidb.cardidanda.updat

出现表不明确
update   cardinfo   set   preamt=b.curamt   from   cardinfo   a   ,   cardinfo   b   where   a.cardid   =b.cardid   and   a.updatedate   = '2007-01-01 '   and   b.updatedate   =dateadd   (   dd   ,   -   1   ,   '2007-01-01 '   )     ;


[解决办法]
update a --用别名
set
preamt=b.curamt
from
cardinfo a , cardinfo b
where
a.cardid =b.cardid
and
a.updatedate = '2007-01-01 '
and
b.updatedate =dateadd ( dd , - 1 , '2007-01-01 ' )

热点排行