Write a query that selects all orders (Order table) except those with zeros or NULLs in the amt field.
SELECT * FROM order WHERE amt IS NOT NULL AND amt <> 0 ;