开发者

Using subquery in update statement

I have 2 tables A and B. I need to run an update on table A but getting one value from one field in table B to be assigned to one field 开发者_如何学Pythonin table A,

The code as the following:

Update [A]    
    set A.Code = 10,
        A.Name = 'Test',
        A.Link = (Select Link from [B] where [B].ID = 10)    
    from [A]

The problem, the value in A.Link is always empty!!!!

Any idea what's wrong

Thanks,


Does A.Code = B.ID? If so ...

UPDATE A
  SET A.LINK = B.LINK
     ,A.NAME = 'TEST'
FROM
  TABLE_A A
  INNER JOIN TABLE_B B
    ON A.CODE = B.ID


Try this:

 Update [A]
 set A.Code = 10, 
     A.Name = 'Test', 
     A.Link = ISNULL((Select Link from [B] where [B].ID = 10),'it was null')
 from [A]

 SELECT * FROM [A] WHERE Name = 'Test'

Does is have the custom it was null message in the Link column?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜