postgres 使用函数批量分段删除与写入

 一、 postgres使用函数批量删除数据万级数据

CREATE or REPLACE FUNCTION insert_many() RETURNS text as 
$$
		DECLARE
		  r int;
			b_count int;
      insert_name VARCHAR;
			 BEGIN
				b_count := 22222;
				while b_count < 22299 LOOP
			  	 r  := (random() * 9000000)::INT;
					insert into test_effects(id,name) VALUES(b_count,r);
					b_count := b_count + 1;
				END LOOP;
				RETURN '插入成功';
			 END;
$$


 
-- 执行分段批量删除
SELECT del_logs_datas();

二 、 postgres使用函数批量插入数据

CREATE or REPLACE FUNCTION insert_many() RETURNS text as 
$$
		DECLARE
		  r int;
			b_count int;
      insert_name VARCHAR;
			 BEGIN
				b_count := 22222;
				while b_count < 22299 LOOP
			  	 r  := (random() * 9000000)::INT;
					insert into test_effects(id,name) VALUES(b_count,r);
					b_count := b_count + 1;
				END LOOP;
				RETURN '插入成功';
			 END;
$$


 
-- 执行分段批量删除
SELECT insert_many();
 

你可能感兴趣的:(postgresql,数据库)