programming-examples/sql/Subqueries/28.Write a query to get all the information for those customers whose grade is not as the grade of customer who belongs to the city London.sql
2019-11-18 14:05:53 +01:00

8 lines
265 B
SQL

/*28.Write a query to get all the information for those customers whose grade is not as the grade of customer who belongs to
the city London.*/
SELECT *
FROM customer
WHERE grade <> ALL
(SELECT grade
FROM customer
WHERE city='London');