PoorMansTSqlFormatter
PoorMansTSqlFormatter copied to clipboard
Option: Make possible do like Sql style guide from Simon Holywell
Basically it's "river" like formatting, with main keywords in left of the "river" and the details in right of he "river":
SELECT first_name AS fn
FROM staff AS s1
JOIN students AS s2
ON s2.mentor_id = s1.staff_num;
You can see the full reference here: https://www.sqlstyle.guide/ and here: https://github.com/treffynnon/sqlstyle.guide/blob/gh-pages/_includes/sqlstyle.guide.md.
I'd like that too! +1
Yes please!
+1