Computer Science

Write a query that selects all orders (Order table) except those with zeros or NULLs in the amt field.

SQL Queries

3 Likes

Answer

SELECT *
FROM order
WHERE amt IS NOT NULL AND amt <> 0 ;

Answered By

2 Likes


Related Questions