I'm using joins in MySQL and I would like to make a clear distinction between all the table columns like:
SELECT table.* AS table_reference, table2.* AS table2_reference ...
to have a result like this:
- table.id
- table.title
- table2.id
- table2.title
is it possible somehow?