8 lines
265 B
MySQL
8 lines
265 B
MySQL
|
/*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');
|