Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Performing aggregate calculations on null values

    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...

Viewing post 1 (of 1 total)