Hi,
_in a query_ you should give an alias to each table. Then use alias to distinguish between different tables, even if two tables have the same column name, then <alias_name.column_name> will give you exactly what you want.
The use of dbc.columns refers to the table structure itself. It does not refer to individual queries where one table can be used multiple times (with different aliases).
Regards,
Vlad.
Hi,
_in a query_ you should give an alias to each table. Then use alias to distinguish between different tables, even if two tables have the same column name, then <alias_name.column_name> will give you exactly what you want.
The use of dbc.columns refers to the table structure itself. It does not refer to individual queries where one table can be used multiple times (with different aliases).
Regards,
Vlad.