Re: Use multidimensional array as VALUES clause in insert

Поиск
Список
Период
Сортировка
От Igor Andriychuk
Тема Re: Use multidimensional array as VALUES clause in insert
Дата
Msg-id AB2B9679-1B23-4354-94DD-2B4AF7538F13@gmail.com
обсуждение исходный текст
Ответ на Use multidimensional array as VALUES clause in insert  (Mike Martin <mike@redtux.plus.com>)
Список pgsql-sql
Hi Martin,

May be I don’t understand completely what are you trying to accomplish but based on your example bellow UNNEST function should do a magic for you, this is the example I wrote for your case:


create table if not exists foo(id int, arr text[]);
truncate table foo;
insert into foo values (1, '{"value1", "value2", "value3"}'), (2, '{"value21", "value22", "value23"}');

create table if not exists foo2(id int, val text);
truncate table foo2;

insert into foo2
select id, unnest(arr) from foo; 


Is this what you trying to do?

Best,
-Igor



On Aug 11, 2020, at 3:47 AM, Mike Martin <mike@redtux.plus.com> wrote:

Is this possible? I have seen examples with array literals as VALUES string, but I cant seen to get it to work with an actual array.

testing code

--This gets me a multidimensional array
with arr AS (
SELECT ARRAY(SELECT ARRAY[fileid::text,tagname,array_to_string(tagvalue,E'\b')]
FROM tagdata_all) -- limit 100)
arr1
)
--Then

INSERT INTO  tagdatatest2
SELECT  arr1::text[] FROM arr --doesnt work only populates one column with original array


В списке pgsql-sql по дате отправления:

Предыдущее
От: Thomas Kellerer
Дата:
Сообщение: Re: Use multidimensional array as VALUES clause in insert
Следующее
От: Mike Martin
Дата:
Сообщение: Re: Use multidimensional array as VALUES clause in insert