我有以下SQL语句
SELECT table1.col1, table2.col2 FROM table1, table2 WHERE table1.t_id = table2.t_id UNION SELECT table1.col1 FROM table1 WHERE table1.col4 = null
问题是,我这个语法无效,因为第二个语句不包含与第一个语句相同的列数.
我不能在第二个语句中包含table2.col2,因为我不需要它.
反正我是否在第二个语句中包含一个默认的第二列,以便我可以使这个查询起作用?
是的,只需使用常量,如1或''.
SELECT table1.col1, table2.col2 FROM table1, table2 WHERE table1.t_id = table2.t_id UNION SELECT table1.col1, '' as col2 FROM table1 WHERE table1.col4 = null