order by desc psql

Solutions on MaxInterview for order by desc psql by the best coders in the world

showing results for - "order by desc psql"
Marlene
07 Apr 2018
1SELECT TOP 1
2	*
3FROM
4	users
5ORDER BY
6	id desc;
Alan
01 Oct 2020
1SELECT
2	select_list
3FROM
4	table_name
5ORDER BY
6	sort_expression1 [ASC | DESC],
7        ...
8	sort_expressionN [ASC | DESC];