I want to link the contents of two queries. Please note that I do NOT want to use CONCAT() or CONCAT_WS() , because this is not what I want to achieve.
Query Results 1:
Id Name 1 John 2 Mike
Query Results 2:
Id Name 3 Emily 7 Robert
I want too:
Id Name 1 John 2 Mike 3 Emily 7 Robert
I can also rewrite both queries as one. That would be wonderful. Here are my current failed attempts:
SELECT ax AS x, ay AS y FROM a; SELECT bx AS x, by AS y FROM b;
Thanks.
source share