Space Between Two statments
dineshasanka
Posts: 208
I have written following statments
select * from A
Select * from B
when I run the SQL refactor option it should intriduces a new line
select * from A
Select * from B
How can I do this
select * from A
Select * from B
when I run the SQL refactor option it should intriduces a new line
select * from A
Select * from B
How can I do this
Comments
I can't see why Refactor's lay out SQL refactorings would do this. Possibly putting keywords on a new line, such as
SELECT *
FROM table
But I don't see why it would put in an empty line, unless perhaps there are lots of spaces in the SQL code and it's doing the word wrap function.