programming-examples/sql/BooleanRelationalOperators/Write a query statement to display all customers in New York who have a grade value above 100.sql

4 lines
170 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
/*Write a query statement to display all customers in New York who have a grade value above 100.*/
SELECT *
FROM customer
WHERE city = 'New York' AND grade>100;