Selecting data into a Postgres array

后端 未结 2 2011
你的背包
你的背包 2020-11-27 07:23

I have the following data:

name          id             url

John          1              someurl.com
Matt          2              cool.com
Sam           3           


        
相关标签:
2条回答
  • 2020-11-27 07:48

    You cannot use array_agg() to produce multi-dimensional arrays, at least not up to PostgreSQL 9.4.
    (But the upcoming Postgres 9.5 ships a new variant of array_agg() that can!)

    What you get out of @Matt Ball's query is an array of records (the_table[]).

    An array can only hold elements of the same base type. You obviously have number and string types. Convert all columns (that aren't already) to text to make it work.

    You can create an aggregate function for this like I demonstrated to you here before.

    CREATE AGGREGATE array_agg_mult (anyarray)  (
        SFUNC     = array_cat
       ,STYPE     = anyarray
       ,INITCOND  = '{}'
    );
    

    Call:

    SELECT array_agg_mult(ARRAY[ARRAY[name, id::text, url]]) AS tbl_mult_arr
    FROM   tbl;
    

    Note the additional ARRAY[] layer to make it a multidimensional array (2-dimenstional, to be precise).

    Instant demo:

    WITH tbl(id, txt) AS (
        VALUES
          (1::int, 'foo'::text)
         ,(2,      'bar')
         ,(3,      '}b",') -- txt has meta-characters
        )
        , x AS (
        SELECT array_agg_mult(ARRAY[ARRAY[id::text,txt]]) AS t
        FROM   tbl
        )
    SELECT *, t[1][3] AS arr_element_1_1, t[3][4] AS arr_element_3_2
    FROM   x;
    
    0 讨论(0)
  • 2020-11-27 08:03

    You need to use an aggregate function; array_agg should do what you need.

    SELECT array_agg(s) FROM (SELECT name, id, url FROM the_table ORDER BY id) AS s;
    
    0 讨论(0)
提交回复
热议问题