gpt4 book ai didi

php - 如何从两个不同的表中进行选择并按一列对它们进行排序?

转载 作者:行者123 更新时间:2023-11-29 08:18:37 24 4
gpt4 key购买 nike

我想创建一个 MySQLi 查询,从数据库中的两个表中进行选择,这两个表结构不同,但有一个公共(public)列,我想将其排序。

例如:

table one:
id / post / date
1 / hi man / 13 - 11 - 2013

table two:
id / shared post / date
1 / hey / 12 - 11 - 2013

我想让查询看起来像这样:

hey / 12 - 11 - 2013
hi man / 13 - 11 - 2013

有人可以帮助我吗?

最佳答案

使用 UNION :

UNION is used to combine the result from multiple SELECT statements into a single result set.

因此:

SELECT post, date FROM tableone
UNION SELECT sharedpost, date FROM tabletwo
ORDER BY date

关于php - 如何从两个不同的表中进行选择并按一列对它们进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20029489/

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