HomeRelational Database and SQL (Preeti Arora) Write a query that selects all orders (Order table) except those with zeros or NULLS in the amt field. 3 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;
Can we write
ReplyDeleteWhere amt>0 instead of amt <>0
Yes.
Deletecan we write amt!=0
ReplyDeletePost a Comment
You can help us by Clicking on ads. ^_^
Please do not send spam comment : )