Null values in WHERE clauses

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 themSELECT * 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)
Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes