Tech Junkie Blog - Real World Tutorials, Happy Coding!: SQL: Checking ShippedDate Column For NULL

Sunday, June 19, 2016

SQL: Checking ShippedDate Column For NULL

Retrieve records with NULL value in the ShippedDate column in the Orders table in Northwind

SELECT OrderID, ShippedDate
FROM Orders
WHERE ShippedDate IS NULL

Retrieve records that is does not have NULL value in the ShippedDate column in the Orders table in Northwind

SELECT OrderID, ShippedDate
FROM Orders
WHERE ShippedDate IS NOT NULL




Similar Posts:

1 comment:

Search This Blog