Changes between Initial Version and Version 1 of Postgres HowTo useful commands


Ignore:
Timestamp:
08/30/16 12:08:29 (8 years ago)
Author:
Richard Bramley
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Postgres HowTo useful commands

    v1 v1  
     1= Postgres HowTo useful commands
     2
     3Tags: [[Postgres]] [[HowTo]]
     4
     5== Log in to database
     6{{{
     7psql -d mydb -U myuser
     8}}}
     9
     10== List tables
     11{{{
     12\dt
     13}}}
     14
     15== Exit Command Line
     16{{{
     17\q
     18}}}
     19
     20[[BackLinks]]