Home Forums SQL Server 2008 T-SQL (SS2K8) what are all the possible values that a blank field in a sql server table could be? RE: what are all the possible values that a blank field in a sql server table could be?

  • Jeffrey Williams 3188 (10/22/2013)


    Sean Lange (10/22/2013)


    polkadot (10/22/2013)


    According to your rules neither of these is accurate. They will both allow columns with the string literal 'NULL'. If you are ok with ignoring rule #3 than I would do a slightly different version of (2).

    Case when ISNULL(realname, '') = '' AND ISNULL(computer_name, '') = '' then email

    To handle the word NULL, couldn't we do this?

    Case when ISNULL(NULLIF(realname, 'NULL'), '') = '' AND ISNULL(NULLIF(computer_name, 'NULL'), '') = '' then email

    Nicely done!!! I think that should do it.

    _______________________________________________________________

    Need help? Help us help you.

    Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.

    Need to split a string? Try Jeff Modens splitter http://www.sqlservercentral.com/articles/Tally+Table/72993/.

    Cross Tabs and Pivots, Part 1 – Converting Rows to Columns - http://www.sqlservercentral.com/articles/T-SQL/63681/
    Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs - http://www.sqlservercentral.com/articles/Crosstab/65048/
    Understanding and Using APPLY (Part 1) - http://www.sqlservercentral.com/articles/APPLY/69953/
    Understanding and Using APPLY (Part 2) - http://www.sqlservercentral.com/articles/APPLY/69954/