Be sure to review our Idea Submission Guidelines for more information!
Submission Guidelinesthe SQL Editing screen has recently been changed (thank you @jpoz and team!) - and now has syntax indenting and keyword coloring.
Could I ask for a minor change:
- The tool seems to be doing a word-wrap even if the container doesn't need it - for example in the screenshot below, the entire on clause can fit on one line because I've expanded the window so that it doesn't need to wrap.
- Could you also default to putting the ON clause for a join 4 spaces indented underneath the join clause? worked example below.
Wordwrap:
Indenting Structure:
Could we use a default structure for queries where the on part is indented underneath the Join?
Select
Field1,
Field2,
field3
from
Table1
inner join table2
On Table1.key = table2.key
and table1.keyb = table2.keyb
inner join table3
on table3.key = table1.key
and table3.date = table1.date
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.