I wanted to perform a select with join that fetched all the data from the two tables but that the second had a prefix to identify that the data is hers, for example I have table1 with column "name" and table2 also with column " name", I wanted to have a select select that was something like this:
SELECT
table1.* AS table1,
table2.* AS table2...
I did some research and I don't think it's possible, but maybe someone has a solution for this.
Thanks