0
votes
0answers
17 views

Doctrine and PostgreSQL array of a custom type

I would need to handle an array of a custom type of PostgreSQL in Doctrine. Example: CREATE TYPE name_surname AS( name varchar, surname varchar); CREATE TABLE test( id serial, ...
3
votes
2answers
92 views

Convert Bit String To Array in PostgreSQL

I have a 160 chars bit string and I need to have an integer array that stores the position of the bits that have a value of 1. Example: bitstring = '00110101' array = [3,4,6,8] Is it possible to ...
2
votes
1answer
107 views

Check if each number from a list matches a range in a int4range[]

I have a field: ages pg_catalog.int4range[][][] Example value is {"[0,6)","[8,10)"} which means 2 ranges 0-6 and 8-10. How to add correct condition to WHERE clause to check: 9 and 3 fit example ...
0
votes
2answers
107 views

combine date and integer in ARRAY

How to select array_agg(ARRAY[f1_date,ARRAY[f2_int,f3_decimal]])? There is an error about combining date and integer in ARRAY. upd: added picture explaining where and how I plan to use array. The ...
0
votes
1answer
141 views

PostgreSQL PL/pgSQL random value from array of values

How can I declare an array like variable with two or three values and get them randomly during execution? a := [1, 2, 5] -- sample sake select random(a) -- returns random value Any suggestion ...
1
vote
1answer
43 views

Aggregate values by row count

I have a series of rows and I need to aggregate values from these rows into the groups of N elements, accumulating values from current and N-1 succeeding rows. With N=3 and data being: VALUES ...
1
vote
1answer
157 views

Comparing arrays in PostgreSQL

I am attempting to determine if any item from a list of values is present in an array column in PostgreSQL. SELECT * FROM data WHERE array IN (array) I have this working using the && ...