I have a table with a collection column. I want to do a subselect which returns several integers and put the result in that collection column, however I can't find a syntax to do it through SQL. I did it by writing an SQL procedure which does the same thing (put results of SELECT in SET variable and return variable), however I'm trying to do the same without functions. Can it be done?
First, I create a temporary table:
CREATE TEMP TABLE table1 (
id INTEGER
, col2 SET(INT NOT NULL)
)
Then I fill it with test data:
INSERT INTO table1 (id) VALUES (1);
INSERT INTO table1 (id) VALUES (2);
And now this works:
UPDATE table1 SET col2 = SET{1,2};
...but I'm trying to do this and it doesn't work:
UPDATE table1 SET col2 = (SELECT id FROM table1) WHERE id = 1;
It returns this error:
[Error Code: -9632, SQL State: IX000] Value does not match the type of column (col2).