programming-examples/sql/RetrieveFromTables/Write a SQL statement to display all the information for those customers with a grade of 200.sql

3 lines
141 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
/*Write a SQL statement to display all the information for those customers with a grade of 200.*/
SELECT *FROM customer
WHERE grade=200;