I have 2 tables that I want to join. They both have a uuid field and a text name field. Besides that they have no connection, The end result I wish to achieve is one table that combined all names and all uuid fields.
SELECT tbl1.uuid as uuid,
tbl1.nname as tname,
tbl2.uuid as uuid,
tble2.zname as tname
FROM some_table_1 tbl1
CROSS JOIN some_table_2 tbl2
the query above creates 2 uuid columns and 2 name columns