Postgresql – How to use a query returning integers in an SQL function that returns integer[]?
I created a function that returns all values that meet the condition specified and tried specifying int[] as the result type of the function. create or replace function mults_of_3_5(id int) returns int[] language sql as $$ SELECT ValuesUnder1000 FROM Mults…