使用Ecto运行自定义sql查询

时间:2015-04-02 15:49:06

标签: elixir ecto

我正在玩Elixir& Ecto的东西。我想创建自定义SQL查询,它使用一些postgres特定的权限(在这种情况下:它搜索postgres数组)。

这是我正在尝试做的事情:

iex(5)> query = from g in MyModel, where: "'sample_tag' = ANY(tags)", select: g    #Ecto.Query<from g in MyModel, where: "'sample_tag' = ANY(tags)", select: g>
iex(6)> Repo.all(query)                                                        [debug] SELECT g0."id", g0."name", g0."description", g0."image_file_name", g0."image_file_size", g0."image_updated_at", g0."image_content_type" FROM "my_model" AS g0 WHERE ('''sample_tag'' = ANY(tags)') [] (0.9ms)

不幸的是,它正在被逃脱(所以它应该像这样产生......)

SELECT g0."id", g0."name", g0."description", g0."image_file_name", g0."image_file_size", g0."image_updated_at", g0."image_content_type" FROM "my_mode." AS g0 WHERE ('sample_tag' = ANY(tags))

我怎样才能做到这一点?

2 个答案:

答案 0 :(得分:17)

您可以使用fragments将表达式发送到数据库:

from g in MyModel,
  where: fragment("? = ANY(?)", "sample_tag", g.tags)

答案 1 :(得分:4)

您可以使用

通过Ecto运行sql
Ecto.Adapters.SQL.query(Repo, "sql here")

对于准备好的陈述,还有第三个参数。