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
Computer Science,
2 months ago
Math,
2 months ago
Science,
2 months ago
Math,
5 months ago
English,
5 months ago
World Languages,
10 months ago
Biology,
10 months ago
Social Sciences,
10 months ago