Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 198 Bytes

postgresql.md

File metadata and controls

20 lines (14 loc) · 198 Bytes

postgresql

install

sudo yum install postgresql-server

psql

# login
psql -h <host> -U <username> -d <password>

# show tables
\dt

# select
select * from <table>;