5 lines
225 B
SQL
5 lines
225 B
SQL
/*Write a SQL statement to display the customer name, city, and grade, etc. and the display will
|
|
be arranged according to the smallest customer ID.*/
|
|
SELECT cust_name,city,grade
|
|
FROM customer
|
|
ORDER BY customer_id; |