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

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值