Code like this:
SELECT staffId, staffName, grossSalary
FROM [personnel] WITH (ROWLOCK, NOEXPAND)
WHERE type IN ('n', 'm')
Lay Out SQL change to:
SELECT staffId,
staffName,
grossSalary
FROM [personnel] WITH (ROWLOCK, NOEXPAND)
WHERE type IN ('n', 'm')
Maybe one new option for disable column placement to new row. I would like all column to be in one line (staffId, staffName, grossSalary). Line must wraped on number of character set in options.
Some querys have a lot of columns and I think readible is poor if goes one column per row.
Uros
Lay Out SQL change to:
Maybe one new option for disable column placement to new row. I would like all column to be in one line (staffId, staffName, grossSalary). Line must wraped on number of character set in options.
Some querys have a lot of columns and I think readible is poor if goes one column per row.
Uros