0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

bashコマンドラインからSQLを実行する(Postgresql)

Last updated at Posted at 2020-01-23

やりたいこと

bashコマンドラインからいちいちpostgresqlにログインしないでコマンドを実行したい。
そのままshellスクリプトで投げたいなど。。。。

psqlオプション(サンプル)

巷でみるecho の引数をシングルクォーテーションで囲ったものだとwhere句のシングルクォーテーションが機能しなかったのでダブルクォーテーションを使う方法にした。

下記サンプルは接続したDBの全テーブルのレコード数を取得するクエリ

echo "\c $DB_NAME \\\ select relname, n_live_tup from pg_stat_user_tables where schemaname='public';" |psql -U $USER_NAME -h $HOST_NAME
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?