First - Thanks for the incredible editor! The beautifier alone has saved me tons of time and there are lots of other incredible things that help me every single day.
One feature that I thought would be nice is if I double click on a word, all occurrences of that word could be highlighted. Kind of like a quick search.
Take this for example:
If I double click on the "a" table alias, it would be helpful if all other "a" words get highlighted. Some SQL statements are soooo long and any help adds some relief.
One feature that I thought would be nice is if I double click on a word, all occurrences of that word could be highlighted. Kind of like a quick search.
Take this for example:
Code:
SELECT a.first
,a.second
,b.first
,b.second
FROM table1 a
,table2 b
WHERE a.id = b.id;
If I double click on the "a" table alias, it would be helpful if all other "a" words get highlighted. Some SQL statements are soooo long and any help adds some relief.