Feeds:
Posts
Comments

Archive for September 23rd, 2008

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: [...]

Read Full Post »