这是一个创建于 4086 天前的主题,其中的信息可能已经有所发展或是发生改变。
a表和b表
都有tid和subject字段
tid一一对应。
b表中subject字段只有部分行存在内容,其余为空。
现在需求为:
根据a表的tid找到b表的对应tid,查找此行的subject字段,若不为空,则将此字段内容用来替换掉a表里对应的subject字段。
我现在边翻手册边写,还是迷迷糊糊的...
1 条回复 • 1970-01-01 08:00:00 +08:00
|
|
1
icanc 2013-11-20 22:50:36 +08:00
update a,b set a.subject= b.subject where a.tid=b.tid and b.subject is not null;
|