Untitled Post - 134

PostgreSQL执行外部sql脚本有两种方式:
一种是在bash命令行上为psql命令用-f选项或重定向指定sql脚本

1
$ psql -U username -d dbname -f /path/to/script.sql

1
$ psql -U username -d dbname < /path/to/script.sql

另一种是在psql命令行上用\i命令执行sql脚本

1
=# \\i /path/to/script.sql