2006-02-17から1日間の記事一覧

vim-full install

pythonを使えるように aptitude instal vim-full

postgresでテーブル一覧&column name を取得するSQL

SELECT c.relname AS tablename, a.attname as columnname , ty.typname as typename, ty.typlen as length, ty.typnotnull as notnull FROM pg_class c LEFT JOIN pg_namespace n ON n.oid = c.relnamespace LEFT JOIN pg_tablespace t ON t.oid = c.reltab…