mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-09 23:15:58 -06:00
In Query editor, we can use the autocomplete feature by using keyword combination - 'Ctrl + Space'.
5 lines
104 B
SQL
5 lines
104 B
SQL
{# SQL query for getting databases #}
|
|
SELECT d.datname
|
|
FROM pg_catalog.pg_database d
|
|
ORDER BY 1
|