Is desc used for arranging data in descending order, but i thought that it is used to 'describe' the table. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Is desc used for arranging data in descending order, but i thought that it is used to 'describe' the table.

17th Feb 2017, 5:29 PM
Jeya lakshmi
Jeya lakshmi - avatar
1 Answer
+ 1
Yeah it's used to order the data in descending order when you query them. For example you want to get all names from the person-Table in descending order: SELECT name FROM person ORDER BY name DESC; Just replace DESC wit ASC to order it in ascending order. But ASC is anyway the default-value. So it's used always when you don't specify it.
17th Feb 2017, 5:50 PM
lulugo
lulugo - avatar