微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

PostgreSQL sql放入文件批量执行

Postgresql sql放入文件,登入数据库之后批量执行

1. 建立测试sql

vi aa.sql

插入:猜测每条sql语句是用;分隔的,function中的多个;也会自动识别。

create table tb1(id integer);
insert into tb1 select generate_series(1,10);
select * from tb1;
delete from
tb1 where id<3;
select * from tb1;

2. 将aa.sql放入 ./src/postgresql-9.3.5/src/tutorial下(./src/postgresql-9.3.5/src/tutorial是Postgresql自动识别的目录,当然也可以放在任意目录,比如/home/postgres/aa.sql

3. 切换用户登入

su postgres

psql postgres

4. 执行:当输入\i时候,会自动检测到./src/postgresql-9.3.5/src/tutorial下的文件,Postgresql的测试例子也放在此目录下

postgres=# \i aa.sql (\i /home/postgres/aa.sql)
 id | name 
----+------
  1 | join
  2 | join
  3 | join
  4 | join
  5 | join
  6 | join
  7 | join
  8 | join
  9 | join
 10 | join
(10 rows)

CREATE TABLE
INSERT 0 10
 id 
----
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
(10 rows)

DELETE 2
 id 
----
  3
  4
  5
  6
  7
  8
  9
 10
(8 rows)

postgres=# 
postgres=# \d tb1 
      Table "public.tb1"
 Column |  Type   | Modifiers 
--------+---------+-----------
 id     | integer | 

第二个例子:

vi bb.sql:

写入一个function:

create function func1()returns void as $$
declare
begin
delete from person where id>5;
delete from tb1 where id>5;
end
$$language plpgsql;

select func1();
切换到postgres,登入之后执行

执行前:

postgres=# select * from person ;
 id | name 
----+------
  1 | join
  2 | join
  3 | join
  4 | join
  5 | join
  6 | join
  7 | join
  8 | join
  9 | join
 10 | join
(10 rows)

postgres=# select * from tb1 ;
 id 
----
  3
  4
  5
  6
  7
  8
  9
 10
(8 rows)
执行:
postgres=# \i bb.sql
CREATE FUNCTION
func1
-------

(1 row)

执行后:
postgres=# select * from person ;
 id | name 
----+------
  1 | join
  2 | join
  3 | join
  4 | join
  5 | join
(5 rows)

postgres=# select * from tb1 ;
 id 
----
  3
  4
  5
(3 rows)

postgres=# 

5. 也可以使用psql命令执行

pslq -d postgres -U postgres -f /home/postgres/aa.sql

原文地址:https://www.jb51.cc/postgresql/195311.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐