When i started learing SQL Server one of the mistakes I did a few times was something like the following.
1: IF OBJECT_ID(‘Invoice’) IS NOT NULL DROP TABLE Customers
2: GO
3: CREATE TABLE Invoice(
4: InvoiceId int,
5: [...]
Posted in SQL Server on September 23, 2008 | 2 Comments »
When i started learing SQL Server one of the mistakes I did a few times was something like the following.
1: IF OBJECT_ID(‘Invoice’) IS NOT NULL DROP TABLE Customers
2: GO
3: CREATE TABLE Invoice(
4: InvoiceId int,
5: [...]