Ecto查询日期范围

时间:2017-12-24 15:04:12

标签: elixir phoenix-framework ecto

我必须根据模型中的时间戳查询日期范围。 到目前为止我尝试过的是

str="2017-12-18"
{:ok, ed}=Ecto.Date.cast(str)
ed= ed |> Ecto.Date.from_erl  |> NaiveDate.from_erl!
Repo.all(from l in Log, where: l.inserted_at == ^ed)

然而,postgres中的日期是日期时间的形式,例如2017-12-18 19:58:01.414。

但我只想查询日期而不是时间。但是,如果我使用Ecto.DateTimeNaiveDateTime并在字符串中传递精确日期时间,则可以正常工作。但我只想在日期上匹配。怎么可能呢? 感谢

1 个答案:

答案 0 :(得分:3)

您可以使用fragment将字段投射到某个日期,然后将其与之比较:

Repo.all(from l in Log, where: fragment("?::date", l.inserted_at) == ^ed)