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

表:销售

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

表:ud

id  (int)
assid  (int)

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

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


当前回答

这在SQL Server中应该有效:

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

其他回答

这在SQL Server中应该有效:

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

以下带有FROM关键字的语句用于使用联接更新多个行

UPDATE users 
set users.DivisionId=divisions.DivisionId
from divisions join users on divisions.Name=users.Division

对于使用MySQL 5.7的prestashop用户

UPDATE
    ps_stock_available sa
    INNER JOIN ps_shop s
        ON sa.id_shop = s.id_shop AND s.id_shop = 1
    INNER JOIN ps_order_detail od
        ON sa.id_product = od.product_id AND od.id_order = 22417
SET
    sa.physical_quantity = sa.quantity + sa.reserved_quantity

这是一个例子,但重点正如埃里克在这里所说https://stackoverflow.com/a/1293347/5864034

您需要在FIRST处添加UPDATE语句,其中包含要连接的所有表的完整地址,然后添加SET语句

对于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');

最简单的方法是使用SQL2005中引入的公共表表达式(CTE)

with cte as
(select u.assid col1 ,s.assid col2 from ud u inner join sale s on u.id = s.udid)
update cte set col1=col2