gpt4 book ai didi

mysql - 从多个表中选择相同的列

转载 作者:可可西里 更新时间:2023-11-01 08:02:50 26 4
gpt4 key购买 nike

我有一个包含多个表的 MySQL 数据库,这些表包含多个相等的列。

例如:

table1 包含 productidprice 和该表特定的几个列。

table2 包含 productidprice 和几个不同的列(不在 table1 中)

table3 还有productid, price 和更多独特的列等等。

是否可以在一个查询中从所有三个表中选择 productidprice 并在一个输出中获得结果?一种方法是选择一些临时表,但有没有更简单/更好/更好的方法?

最佳答案

使用联合:

    select productid,price from table1
union select productid,price from table2
union select productid,price from table3

关于mysql - 从多个表中选择相同的列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46929415/

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