end0tknr's kipple - web写経開発

太宰府天満宮の狛犬って、妙にカワイイ

2022-04-27から1日間の記事一覧

postgresql の psql で、日本語が入力できない場合、--no-readline を追加

どうやら、readlineが悪影響していたみたい。 ✕ $ /usr/local/pgsql/bin/psql -U postgres springvue ○ $ /usr/local/pgsql/bin/psql -U postgres springvue --no-readline ✕ postgres> select * from mlit_fudousantorihiki where city=''; ○ postgres> sel…

postgresでのtableやcolumnへのコメント追加は「COMMENT ON ~ IS '$comment'」

以下のentryの関連です。 mysqlの"show create table" のpostgresにおける代替は、"pg_dump --schema-only" - end0tknr's kipple - web写経開発 mysqlと異なり、postgresでのtableやcolumnへのコメント追加は 「COMMENT ON ~ IS '$comment'」で行うみたい。…