Answers for "desc postgres"

SQL
2

order by desc postgres

SELECT TOP 1
	*
FROM
	users
ORDER BY
	id desc;
Posted by: Guest on August-06-2021
3

describe table postgres

postgres=# \d schema.tablename;
Posted by: Guest on June-24-2020
3

show details of table postgres

postgres=# \d tablename;
Posted by: Guest on July-15-2020
0

order by desc psql

SELECT
	select_list
FROM
	table_name
ORDER BY
	sort_expression1 [ASC | DESC],
        ...
	sort_expressionN [ASC | DESC];
Posted by: Guest on April-16-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language