Option to right-align table aliases in SELECT list
Add an option to right-align table aliases in the SELECT list.
Here is an example:
SELECT
-> [alias]->-> -> -> =t.col1
-> ,[differentlen] -> =t.col1
FROM tablename t
=t.col1 should be right-aligned and stay under each other.
12
votes
Anonymous
shared this idea
-
Oleksandr Kosariev commented
It would be cool to have it in updates too:
update schema.TableName set
-> -> FirstColumn->-> = 1,
-> -> SecondColumn-> = 2