Computer Science, asked by madhurcm79, 3 months ago

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 architjain2007
2

Answer:

SELECT * FROM orders WHERE (amt IS NOT NULL AND amt <> 0);

'<>

means 'not equal to'.

Similar questions