Comments
Sort by recent activity
Original: IF @IsHoliday=1
SET @DayState = 3
ELSE
SET @DayState = 1
After Reformat: IF @IsHoliday = 1
SET
@DayState = 3
ELSE
SET
@DayState = 1
Our proposal would be that for standalone set statements there never should be a newline (although we have opted for 'First Column On New Line'.
Not a big thing, but I guess others might want that as well...
Roland / comments
Original:IF @IsHoliday=1
SET @DayState = 3
ELSE
SET @DayState = 1
After Reformat:IF @IsHoliday = 1
SET
@DayState = 3
ELSE
SET
@DayState = 1
Our proposal would be that ...