You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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;