如何update表1的字段D='2',当表1的字段1、字段2、字段3的值都同时与表2的字段1、字段2、字段3的值相同?(50分)

  • 主题发起人 主题发起人 johnnywong
  • 开始时间 开始时间
J

johnnywong

Unregistered / Unconfirmed
GUEST, unregistred user!
如何update表1的字段D='2', 当表1的字段1、字段2、字段3的值都同时与表2的字段1、字段2、字段3的值相同?
 
sql server:<br>update 表1 set 字段D='2' from 表2<br>&nbsp; where 表1.字段1=表2.字段1 and 表1.字段2=表2.字段2 and 表1.字段3=表2.字段3
 
update b &nbsp;set b.字段D='2' from 表1 &nbsp;b ,表2 a <br>&nbsp; where b.字段1=a.字段1 and b.字段2=a.字段2 and b.字段3=a.字段3
 
楼上正解!
 

Similar threads

S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
913
SUNSTONE的Delphi笔记
S
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部