Comment exécuter le script SQL dans PostgreSQL

export PGPASSWORD=<password>
psql \
  -h <host> \
  -d <db> \
  -U <user> \
  -p 5432 \
  -a \
  -q \
  -f <path_to_file>
Injury