Skip to content
Advertisement

How to use BETWEEN condition for array column in Postgres?

I have a multiple_dates column in a Postgres DB.
To find by a specific date I’m writing like this:

But I want to search by a specific period by using BETWEEN clause like this:

This SQL didn’t work. How can I use ANY and BETWEEN clause at the same time?

Advertisement

Answer

The “problem” is that the ANY construct works for operators, not for other constructs – and BETWEEN is another construct.

Related:

There is an easy solution for this, though. Construct a daterange from the given bounds and use the contains operator @>.

Related:

Then the query can simply be:

Note the third argument '[]' to construct the range with inclusive bounds to match the behavior of BETWEEN.


Alternative: normalize your schema. Create a n:1 table like:

Add an index on (single_date, company_id) as well. See:

Then your query can be:

Occupies more space on disk, more verbose query, but much faster for big tables and more versatile.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement