我在名为 categories 和 categories_description 的数据库中有两个表。在 categories_description 表中,我需要选择 categories_name 等于“轴承”的所有 categories_id。然后使用这些选定的 categories_id 编号,使用“bearings.jpg”更新类别表中的 categories_image。
我了解如何编写代码来选择 categories_id,但不确定如何使用该选择来更新另一个表中的相同 categories_id。
SELECT categories_id FROM categories_description WHERE categories_name = 'Bearings';
现在我需要在从上面选择的每个 id 处更新 categories_image 的类别表。
它应该是这样的,但我不确定如何将它们联系在一起。
UPDATE categories SET categories_image = 'bearings.jpg' WHERE categories_id = above statement