Sql 9.2practice answer | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 4

Sql 9.2practice answer

select company, year from cars where year =2020 ; How can i make this to descending order?

9th Apr 2021, 10:04 AM
Minju Kim
Minju Kim - avatar
6 Answers
+ 9
You can try this i hope it solve your problem SELECT company, year FROM cars WHERE year = 2020 ORDER BY year DESC;
15th Jan 2022, 11:01 AM
Vaibhav
Vaibhav - avatar
0
7th Dec 2021, 10:25 PM
ghazal hasani
0
Its great to be focused on the lessons but you should always find another ways to learn such as Google, Youtube etc. I am also a beginner but I passed so quickly.
10th Dec 2021, 9:45 PM
ZORAN CVETKOVSKI
ZORAN CVETKOVSKI - avatar
0
SELECT company, year FROM cars WHERE year = 2020 ORDER BY year DESC;
20th Dec 2021, 9:26 PM
Fátima Rodríguez Cañas
Fátima Rodríguez Cañas - avatar
0
You can try this SELECT company, year FROM cars WHERE year = 2020 ORDER BY year DESC; The year is DESC
10th Jan 2022, 8:13 PM
Veronica
- 4
ORDER BY company ASC ;
11th Apr 2021, 10:02 PM
Busra