- 4
Sql 9.2practice answer
select company, year from cars where year =2020 ; How can i make this to descending order?
6 odpowiedzi
+ 9
You can try this i hope it solve your problem
SELECT company, year
FROM cars
WHERE year = 2020
ORDER BY year DESC;
0
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.
0
SELECT company, year FROM cars WHERE year = 2020 ORDER BY year DESC;
0
You can try this
SELECT company, year
FROM cars
WHERE year = 2020
ORDER BY year DESC;
The year is DESC
- 4
ORDER BY company ASC ;