advertisement
Premier Club Log In/Registration
  Include Code  Search Tips
TODAY'S HEADLINES  |   ARTICLE ARCHIVE  |   SKILLBUILDING  |   TIP BANK  |   SOURCEBANK  |   FORUMS  |   NEWSLETTERS
Browse DevX
Partners & Affiliates
advertisement
advertisement
Tip of the Day
Average Rating: 4.5/5 | Rate this item | 8 users have rated this item.
Tip formerly from VB2TheMax
Expertise: Intermediate
Language: SS7,VB6,VBS
May 13, 2000
Null values in WHERE clauses
A SELECT query returns all the rows for which the WHERE clause returns True. However, many developer - especially those accustomed to other programming languages, such as VB - get confused on this point, and assume that the query returns the rows for which the WHERE clause returns any non-False value, and this is a major source for bugs.

To explain the reason, consider that the SQL language uses a three-value logic: True, False, and Null. Any Null value in an expression makes the entire expression Null (with some exception, noted below). For example, your common sense would suggest that the following SELECT returns all the rows in the table:

SELECT * FROM Orders WHERE (total < 1000 Or total >= 1000)
What happens, however, is that the SELECT won't include records for which the Total field is Null, because this value makes the entire WHERE expression evaluate to Null. Here's another example:
SELECT * FROM Orders WHERE total = 0
The above query returns all orders for which Total is zero, but not those for which Total is Null. If you want to include the latter ones, you must explicitly look for Null values:
SELECT * FROM Orders WHERE total = 0 OR total IS NULL
ISNULL is T-SQL a function that is often useful to get rid of Null values. Simply stated, it always returns its first argument, except when it is Null (in which case it returns the second argument). See how you can rewrite the above query to avoid Null values:
-- convert Null values to zero before comparing them
SELECT * FROM Orders WHERE ISNULL(total, 0) = 0 
Moreover, T-SQL extends the ANSI 92 standard and supports Null also in IN clauses, so you can rewrite the above query as follows:
SELECT * FROM Orders WHERE total IN (0, NULL)
Francesco Balena
If you have a hot tip and we publish it, we'll pay you. However, due to accounting overhead we no longer pay $10 for a single tip submission. You must accumulate 10 acceptable tips to receive payment. Be sure to include a clear explanation of what the technique does and why it's useful. If it includes code, limit it to 20 lines if possible. Submit your tip here.
Please rate this item (5=best)
 1  2  3  4  5
advertisement
advertisement
Advertising Info  |   Member Services  |   Permissions  |   Contact Us  |   Help  |   Feedback  |   Site Map  |   Network Map  |   About

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs