Posts
Sort by recent activity
Incorrect layout of INSERT and UPDATE in StoredProc?
Hello,
we have set the layout to get the following for SELECT statements:SELECT
@newUserFullName = dbo.fnFormatName(Firstname, Lastname, Title),
@newUserUserName = UserName
from
...
Logical operator on single line
SQL Refactor: great stuff
One thing that we miss is the option 'logical operator on single line'
We use to format sql this way:select
col1,
col2
from
tbl
where
expr1
and
expr2
I kno...