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