gpt4 book ai didi

MySQL:在 "update"和 "where"字段中使用 select 的结果

转载 作者:行者123 更新时间:2023-11-29 08:38:39 26 4
gpt4 key购买 nike

我有两个图像表,现在我喜欢将所有图像打包在一个表中并通过外键 fk_image 引用它:

另外:

Table1: ('id_system' , 'logo_image_raw', 'fk_image')
Table2: ('id_image', 'image_raw_data')

如何将 logo_image_raw 复制/移动到表 2 'image_raw_data' 并在 fk_image 中反射(reflect)其 id_image?

最佳答案

你可以这样做..

 INSERT INTO table2
SELECT table1.fk_image, table1.logo_image_raw
FROM table1, table2 WHERE table1.fk_image = table2.id_image

关于MySQL:在 "update"和 "where"字段中使用 select 的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14480233/

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