Search code examples
pgadmin

Autocomplete/Intellisense for For Columns in PGAdmin III


I recently discovered in PGAdmin III that you can autocomplete/activate intellisense by hitting Ctrl+Space. This however only seems to work for tables. Is there a way to trigger intellisense for column names as well?


Solution

  • pgAdmin 4 seems to autocomplete columns when using dot notation. So hitting Ctrl+Space after

    select * from table1 where table1.
    

    will list all available columns.