PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Ecto Query - Date + Intervalli Postgres + Interpolazione query

Avevo bisogno di fare esattamente questo tempo fa e ho finito per usare il fatto che puoi moltiplicare gli intervalli con $1 .

postgres=# select interval '1 year' - interval '1 month' * 5;
 ?column?
----------
 7 mons
(1 row)

Quindi, questo dovrebbe funzionare:

query = from ch in Child, 
            join: loc in assoc(ch, :location),
            where: ch.birthday <= fragment("(now() AT TIME ZONE ?)::date - interval '1 month' * ?", loc.time_zone, 2)

Repo.all(query)