MySQL update table based on another tables value(MySQL根据另一个表值更新表)
问题描述
我有两张桌子,
这是我的第一张桌子,
这是我的第二张桌子,
我需要了解如何使用第一个表中的数据更新第二个表中的所有行.
I need to some how update all rows within my second table using data from my first table.
它需要在一个更新查询中完成这一切.
It would need to do this all in one update query.
SUBST_ID 和 SERIAL_ID 都匹配,需要从第一个表中获取 created_id 插入到第二个表中.
Both SUBST_ID and SERIAL_ID match, it needs to grab the created_id from the first table and insert it into the second table.
所以第二个表会变成下面这样,
So the second table would become the following,
感谢您的帮助和指导.
推荐答案
这篇关于MySQL根据另一个表值更新表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!