gpt4 book ai didi

MySQL:如何根据表2中的列的条件更新表1中的列

转载 作者:行者123 更新时间:2023-11-29 13:14:20 25 4
gpt4 key购买 nike

所以我有两个表,名为:product_to_categoryproduct_description

product_to_category (product_id, category_id)

product_description (product_id, description)

我想按 category_id 编号更新列 description

最佳答案

我认为下面的查询会对您有所帮助

Update product_description  set description = b.category_id 
From product_description a Inner Join product_to_category b
ON a. product_id = b. product_id

关于MySQL:如何根据表2中的列的条件更新表1中的列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21682601/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com