我需要在SQL Server中使用其“父”表中的数据更新此表,如下所示:

表:销售

id (int)
udid (int)
assid (int)

表:ud

id  (int)
assid  (int)

sale.assid包含更新ud.assid的正确值。

什么查询将执行此操作?我在考虑加入,但我不确定是否可能。


当前回答

在MS ACCESS中:

UPDATE ud 
INNER JOIN sale ON ud.id = sale.udid
SET ud.assid = sale.assid;

其他回答

SQL不是真正可移植的另一个例子。

对于MySQL,应该是:

update ud, sale
set ud.assid = sale.assid
where sale.udid = ud.id;

有关更多信息,请阅读多表更新:http://dev.mysql.com/doc/refman/5.0/en/update.html

UPDATE [LOW_PRIORITY] [IGNORE] table_references
    SET col_name1={expr1|DEFAULT} [, col_name2={expr2|DEFAULT}] ...
    [WHERE where_condition]

试试这个吧,我想这对你有用

update ud

set ud.assid = sale.assid

from ud 

Inner join sale on ud.id = sale.udid

where sale.udid is not null

这在SQL Server中应该有效:

update ud 
set assid = sale.assid
from sale
where sale.udid = id

对于SQLite,使用RowID属性进行更新:

update Table set column = 'NewValue'
where RowID = 
(select t1.RowID from Table t1
join Table2 t2 on t1.JoinField = t2.JoinField
where t2.SelectValue = 'FooMyBarPlease');

PostgreSQL:

CREATE TABLE ud (id integer, assid integer);
CREATE TABLE sales (id integer, udid integer, assid integer);

UPDATE ud
SET assid = sales.assid
FROM sales
WHERE sales.id = ud.id;