0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

herokuとPostgreSQLの接続と使い方(初心者向け)

Last updated at Posted at 2024-08-30

herokuでデプロイしたアプリでPostgreSQLの接続方法

①まずはherokuにログインする

heroku login

②herokuのアプリに接続する

heroku pg:psql -a <your-app-name>

heroku pg:psql -a talk

PostgreSQLでのSQLのファイルの実行方法

①まずはsqlファイルを作る

sqlファイルは名前をファイル名.sqlにする

②sqlファイルを書く

sqlファイルにはそのままsqlを書く

SELECT カラム名
FROM テーブル名

③sqlファイルのパスを書く

PostgreSQLに接続した状態で,

\i C:/Users/ユーザー名前/ディレクトリ名/ファイル名.sql

とsqlファイルまでの絶対パスを書く.

\i C:/Users/tanaka/talk/script.sql
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?