前端速查表
- 为前端开发者而生的前端开发速查表
Postgresql
Console
$ psql
Commands
Show tables:
\dt
Show databases:
\l
Show columns of a table:
\d table
or
\d+ table
Creating database
$ createdb databasename
前端速查表