You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT a.*, b.* FROM adam a LEFT JOIN ben b ON a.b_id = b.id
or even just SELECT * FROM adam a LEFT JOIN ben b ON a.b_id = b.id
it would be really helpful if the result field names were automatically prefixed with the table alias, resulting in names like a.id, a.b_id, a.whatever, b.id, b.whatever. Currently, fields with the same name from the b table overwrite those from the a table in the result set, and you have to manually alias each field, which can be quite cumbersome. What do you think?
The text was updated successfully, but these errors were encountered:
When running a query like:
SELECT a.*, b.* FROM adam a LEFT JOIN ben b ON a.b_id = b.id
or even just
SELECT * FROM adam a LEFT JOIN ben b ON a.b_id = b.id
it would be really helpful if the result field names were automatically prefixed with the table alias, resulting in names like a.id, a.b_id, a.whatever, b.id, b.whatever. Currently, fields with the same name from the b table overwrite those from the a table in the result set, and you have to manually alias each field, which can be quite cumbersome. What do you think?
The text was updated successfully, but these errors were encountered: