postgres equivalent's

トップ ページ
添付ファイル:
Eメールのメッセージ
+ (text/plain)
このメッセージを削除
このメッセージに返信
著者: Nick Estes
日付:  
題目: postgres equivalent's
> mysqlshow

If you tell me what it does, I'm sure I could tell you the equivalent (-=


> mysqladmin create <db>


createdb <db>

Simlar programs that come in handy are: dropdb, createuser, and
vacuumdb


> show tables;


\dt

See also: \d to show everything (tables, sequences, etc), there's also a
few others to show other info.


> describe <table>;


\d <table>

    --Nick