programming-examples/sql/RetrieveFromTables/Write a SQL statement to display all the information for those customers with a grade of 200.sql
2019-11-18 14:05:53 +01:00

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;