Computer Science

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

SQL Queries

6 Likes

Answer

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

Answered By

3 Likes


Related Questions