1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-10-16 15:38:44 +02:00
cheatsheets/postgresql.md
2017-10-22 13:08:21 +02:00

219 B

title
title
PostgreSQL

Console

$ psql

Commands

  • Show tables: \dt
  • Show databases: \l
  • Show columns of a table: \d table or \d+ table

Creating database

 $ createdb databasename