Computer Science, asked by renunavanya, 4 months ago

With SQL, how can you return all the records from a table named "Persons" sorted descending by "FIRST_NAME"? *​

Answers

Answered by samridhisethi13
0

Answer:

select * from Persons order by FIRST_NAME desc.

Similar questions