This website requires JavaScript.
Explore
Help
Register
Sign In
ThirdMirrors
/
cheatsheets
mirror of
https://gitee.com/Hawkin99/cheatsheets.git
Watch
1
Star
0
Fork
You've already forked cheatsheets
0
Code
Issues
Projects
Releases
Wiki
Activity
8b68c424df
cheatsheets
/
postgresql.md
219 B
Raw
Blame
History
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