Lay Out SQL request
jamal
Posts: 47 Bronze 3
Can an option be added to keep BEGIN END blocks in line with their logical code? I like to see BEGIN and END directly below IF statements and loops like this:
IF x
BEGIN
<tab> --code here
END
and it seems Lay Out SQL enforces an automatic tab which makes it more difficult to find the end of the code block
IF x
<tab>BEGIN
<tab><tab> --code here
<tab>END
IF x
BEGIN
<tab> --code here
END
and it seems Lay Out SQL enforces an automatic tab which makes it more difficult to find the end of the code block
IF x
<tab>BEGIN
<tab><tab> --code here
<tab>END
James
Comments