Select all records from a table, sort the result reversed alphabetically by a specific column.
SELECT * FROM Customers order by City DESC; /*w3exercise_input_no_0 w3exercise_input_no_1 w3exercise_input_no_2; Here table name is Customer and Column name is City*/