>  기사  >  데이터 베이스  >  postgresql中常用小语法2

postgresql中常用小语法2

WBOY
WBOY원래의
2016-06-07 14:59:051384검색

postgresql中常用小语法2 postgresql中常用小语法 http://www.2cto.com/database/201305/210793.html 1. PG 中测试可能需要循环插入N多数据 这时候写function等就比较麻烦 我们可以用 generate_series 来 example: mrapp=# create table test_series(id int)

postgresql中常用小语法2

 

postgresql中常用小语法

http://www.2cto.com/database/201305/210793.html

 

1. PG 中测试可能需要循环插入N多数据 这时候写function等就比较麻烦 我们可以用 generate_series 来

example:

 

mrapp=# create table test_series(id int) ;

CREATE TABLE

mrapp=# insert into test_series(id) select generate_series(1,100000);

INSERT 0 100000

mrapp=# select count(1) from test_series;

 count

--------

 100000

(1 行记录)

 

 

2. postgresql 中比较两个字符串中重叠的数量

  我们先将array转换为行数据 然后和另一个转换过的array进行去重 然后再拼为数组即可

 

example:

 

 

mrapp=# select unnest(array[1,2,4]);

 unnest

--------

      1

      2

      4

(3 行记录)

 

mrapp=# select unnest(array[1,2,4]) intersect select unnest(array[2,3,4]);

 unnest

--------

      2

      4

(2 行记录)

 

mrapp=# select array(select unnest(array[1,2,4]) intersect select unnest(array[2

,3,4]));

 array

-------

 {2,4}

(1 行记录)

 

3. postgresql 列转数组

  可以用array_agg 函数来处理

example :

 

 

mrapp=# select 1 as a union select 2 as a union select 3 as a;

 a

---

 1

 2

 3

(3 行记录)

 

mrapp=# select array_agg(t.a) from (select 1 as a union select 2 as a union sele

ct 3 as a) as t;

 array_agg

-----------

 {1,2,3}

(1 行记录)

 

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.