Viewing post 1 (of 1 total)
But look at the following:
CREATE TABLE #UserNameAge (
UserName varchar (50) NOT NULL ,
Age int NULL
) ON [PRIMARY]
INSERT INTO #UserNameAge(UserName, Age) VALUES ('Andy', 30)
INSERT INTO #UserNameAge(UserName, Age) VALUES ('Brad', NULL)
INSERT...
September 11, 2003 at 5:00 am
#473665