3 lines
141 B
MySQL
3 lines
141 B
MySQL
|
/*Write a SQL statement to display all the information for those customers with a grade of 200.*/
|
||
|
SELECT *FROM customer
|
||
|
WHERE grade=200;
|