programming-examples/sql/BooleanRelationalOperators/Write a query statement to display all customers in New York who have a grade value above 100.sql
2019-11-18 14:05:53 +01:00

4 lines
170 B
SQL

/*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;