🪴 PauloricultureSearchSearch IconIcon to open search Light ModeDark Mode[Basic] Postgres Commands (EN)Last updated Jul 16, 2023 - Edit SourceSkillBasicPostgresEn# access to DB1 psql postgresql://{username}:{password}@{host}:{port}/{database_name} # get database list & choice database1 2 \l \c {database_name} # get table list1 \dt # get table information1 \d {table_name} # exit1 \q Interactive Graph