• subscribe
January 22, 2003 12:00 AM

Using T-SQL to Avoid Unwanted NULLs

SQL Server Pro
InstantDoc ID #37569
Downloads
37569.zip

You can avoid returning NULL values from your queries by using the IsNULL() function in your T-SQL query or stored procedure, as the code in Listing A shows. This way, if a column contains a NULL, the server substitutes either a string or another specified value (the data types must match). In Listing A's code, for example, I return -1 as a substitute for any NULLs encountered in the Year_Born column data.



ARTICLE TOOLS

Comments
    There are no comments to display. Be the first one!
You must log on before posting a comment.

Are you a new visitor? Register Here