Hello
Is there a quick way to add a prefix for the columns of the table that I join?
E.g.
FROM t1
LEFT JOIN t2 on col1=col2
I would like all columns from t2 to be renamed as 't2 - [original column name]' without having to list and rename each.
Thanks!