Posts
Sort by recent activity
Import Feature
I love using the SQL Data Generator to import TSV files into sql server. There are 2 issues with this.
1. I need to create the table first. I usually use the SQL Server Import Wizard for this. ...
formatting if else if statements
I want the formatting to be as follows:
IF ()
STATEMENT
ELSE IF ()
STATEMENT
ELSE IF ()
STATEMENT
ELSE
STATEMENT
However, currently, it formats like this:
IF ()
STATEMENT
ELSE
IF ()
STATEMENT
ELSE
...