9

我知道联合查询必须具有相同数量的列。我正在尝试从表中获取结果,comments并从strings具有多个连接的表中获取结果。我该怎么做?我还没有测试,因为我知道我会得到不同数量的列的错误。这是我试图结合的两个查询。

查询 1(字符串)

SELECT sub.actionid as usersub, 
                ftable.`last-time` as lastvisited, updatetable.recent as mostrecent, parent.* FROM `strings` as parent 
        LEFT JOIN subscribe sub on sub.actionid=parent.id AND sub.userid=:userid
        JOIN followers ftable on ((ftable.sid=parent.sid AND ftable.page='1') OR 
        (ftable.sid=parent.sid AND ftable.position=parent.position AND ftable.page='0') 
        OR (ftable.profile=parent.starter AND parent.guideline='1')) AND ftable.userid=:userid
        JOIN `update-recent` updatetable on 
        ((updatetable.sid=parent.sid AND updatetable.position=parent.position AND updatetable.pageid='0')
        OR (updatetable.profile=parent.starter) OR (updatetable.pageid=parent.pageid AND parent.pageid!=0))
        WHERE ftable.userid=:userid AND parent.deleted='0' GROUP BY parent.id 

查询2(评论)

SELECT * FROM comments WHERE viewed='0' AND (`starter-id`=:userid OR respondid=:userid)

我想按时间戳列排序结果posted(最新)ORDER BY posted DESC

我如何联合这些查询?

4

3 回答 3

28

您可能希望选择列NULL来占用某些表中的空白空间。

表 A:(id,column1)

表 B:(id,column1,column2)

Select id, column1, null as column2 from tableA
UNION
Select id, column1, column2 from tableB
于 2013-04-07T20:04:34.750 回答
1

将空列 ( null as columnName) 添加到列较少的查询中。您应该避免*在这种情况下使用,以便更好地控制两个查询中的列顺序。

于 2013-04-07T20:04:24.870 回答
1

解决此问题的另一种非常狡猾的方法是在表之间不共享 CONCAT_WS 列,例如

SELECT `r_id`, `r_added`, CONCAT_WS('###',`otherfield1`,`otherfield2`) as r_other FROM table1
UNION
SELECT `r_id`, `r_added`, CONCAT_WS('###',`otherfield3`,`otherfield4`,`otherfield5`) as r_other FROM table2

然后,您可以以编程方式重建该数据,例如

$rother = explode("###", $row['r_other']);

获取这些数据的方法非常糟糕,但可能会让某人摆脱修复。您甚至可以更改分隔符,例如#t1# #t2# 搜索字符串以检查连接数据来自哪个表。

于 2015-12-23T12:00:00.877 回答