Q 29. Write a query that selects all orders except those with zero or null in the Amt field from table
order.
Answers
Answered by
8
Answer:
SELECT * FROM orders WHERE (amt IS NOT NULL AND amt <> 0);
'<>
means 'not equal to'.
Explanation:
Similar questions
Math,
3 months ago
Math,
3 months ago
Math,
6 months ago
English,
6 months ago
World Languages,
1 year ago
Biology,
1 year ago
Social Sciences,
1 year ago