gpt4 book ai didi

postgresql - Elixir : check if postgresql map column has key

转载 作者:行者123 更新时间:2023-11-29 12:43:24 26 4
gpt4 key购买 nike

使用 json/jsonb 数据类型 ecto 建议 to use fragments .

在我的例子中,我必须使用 PostgreSQL ? 运算符来查看 map 是否有这样的键,但是它会变成这样的:

where(events, [e], e.type == 1 and not fragment("???", e.qualifiers, "?", "2"))

当然 fragment 读取 PostgreSQL ? 作为占位符。我如何检查 map 是否有这样的 key ?

最佳答案

需要对中间的?进行转义,传递给fragment一共三个参数:

fragment("? \\? ?", e.qualifiers, "2")

演示:

iex(1)> MyApp.Repo.insert! %MyApp.Food{name: "Foo", meta: %{price: 1}}
iex(2)> MyApp.Repo.insert! %MyApp.Food{name: "Foo", meta: %{}}
iex(3)> MyApp.Repo.all from(f in MyApp.Food, where: fragment("? \\? ?", f.meta, "price"))
[debug] SELECT f0."id", f0."name", f0."meta", f0."inserted_at", f0."updated_at" FROM "foods" AS f0 WHERE (f0."meta" ? 'price') [] OK query=8.0ms
[%MyApp.Food{__meta__: #Ecto.Schema.Metadata<:loaded>, id: 1,
inserted_at: #Ecto.DateTime<2016-06-19T03:51:40Z>, meta: %{"price" => 1},
name: "Foo", updated_at: #Ecto.DateTime<2016-06-19T03:51:40Z>}]
iex(4)> MyApp.Repo.all from(f in MyApp.Food, where: fragment("? \\? ?", f.meta, "a"))
[debug] SELECT f0."id", f0."name", f0."meta", f0."inserted_at", f0."updated_at" FROM "foods" AS f0 WHERE (f0."meta" ? 'a') [] OK query=0.8ms
[]

我不确定这是否在任何地方记录,但我从 this 中找到了方法测试。

关于postgresql - Elixir : check if postgresql map column has key,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37903679/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com