The following query does not work, and produces an error:
A transport-level error has occurred when receiving results from the server
SELECT
*
FROM
table1 a,
table2 b,
table3 c
WHERE
a.location = b.location AND
b.location = c.location AND
a.id = c.id AND
a.entry = ''34690''
Although this query works:
SELECT
a.location,
a.id,
a.entry,
c.desc,
b.name
FROM
table1 a,
table2 b,
table3 c
WHERE
a.location = b.location AND
b.location = c.location AND
a.id = c.id AND
a.entry = ''34690''
I need to select pretty much everything from all tables (about 100 items), but do I really need to specify each column that I need in the resultset?