column alias by column name
Feature to automatically add column alias with the name of the column.
E.g.:
SELECT Column1
FROM Table1 AS t1
changes to:
SELECT Column1 AS Column1
FROM Table1 AS t1
If the name can not be found add a dummy-alias like Exp1
8
votes
Florian Juhas
shared this idea