pgadmin4/web/pgadmin/misc/templates/sqlautocomplete/sql/9.1_plus/databases.sql
Akshay Joshi 0a354055a9 Adding support for autocomplete in the SQL Editor.
In Query editor, we can use the autocomplete feature by using keyword
combination - 'Ctrl + Space'.
2016-05-21 16:04:29 +05:30

5 lines
104 B
SQL

{# SQL query for getting databases #}
SELECT d.datname
FROM pg_catalog.pg_database d
ORDER BY 1