MySql-使用来自同一表的选择语句更新表

MySql-使用来自同一表的选择语句更新表,第1张

MySql-使用来自同一表的选择语句更新
update table as t1inner join (select field_id_46,field_id_47 from table where entry_id = 36) as t2set t1.field_id_60 = t2.field_id_46,    t1.field_id_61 = t2.field_id_47where t1.entry_id = 45

或者,简单地

update table as t1,(select field_id_46,field_id_47 from table where entry_id = 36) as t2set t1.field_id_60 = t2.field_id_46,    t1.field_id_61 = t2.field_id_47where t1.entry_id = 45


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5062661.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存