I'm still amazed...I understand, though from what everyone has posted in a previous thread, but also would like to know of a practical application (other than it's easier to use 0):USE NorthWindGOCREATE TABLE myTable(col1 int IDENTITY(1,1), col2 datetime, col3 char(1))GOALTER TABLE [dbo].[myTable] WITH NOCHECK ADD CONSTRAINT [cons_myTable_col2] DEFAULT (0) FOR [Col2], PRIMARY KEY CLUSTERED ( [col1] ) WITH FILLFACTOR = 90 ON [PRIMARY] GOINSERT INTO myTable(col3) SELECT 'X'GOSELECT * FROM myTableGODROP TABLE myTableGO
Brett8-)