HomeSimple Queries in SQL Write a query that selects all orders (Order table) except those with zeros or NULLS in the amt field. 5 Comments Facebook Twitter Q. Write a query that selects all orders (Order table) except those with zeros or NULLS in the amt field. Answer =Select * from OrderWhere amt is not null and amt <> 0 ;
Select * from Order
ReplyDeleteWhere amt is not null and 0 ;
Thi answer is correct or not
No
ReplyDeleteSQL Not Equal Operator: !=
ReplyDeleteno its <>
ReplyDeleteu can use both
DeletePost a Comment
You can help us by Clicking on ads. ^_^
Please do not send spam comment : )