EasyBasic SELECT
Select all orders with NULL shipped_at (not shipped)
The query
SQL
SELECT order_id, cust_id, order_date, status
FROM orders
WHERE shipped_at IS NULL;Note
“Always use IS NULL / IS NOT NULL. Never use = NULL.
SELECT order_id, cust_id, order_date, status
FROM orders
WHERE shipped_at IS NULL;Note
“Always use IS NULL / IS NOT NULL. Never use = NULL.