Example of what I want to do: select a.* as a_, b. as b_* FROM a, b WHERE a.id = b.id
views:
18answers:
1
+1
A:
Cannot be done automatically in SQL. Either type or generate the following:
SELECT a.field AS a_field, a.field2 AS a_field2, ...
At any rate, listing the fields by hand is good practice anyways.
Matti Virkkunen
2010-07-26 15:49:45