gpt4 book ai didi

Elixir + Ecto : How to do WHERE NOT IN [array]?

转载 作者:行者123 更新时间:2023-12-04 01:58:46 24 4
gpt4 key购买 nike

我正在寻找所有 User在其 match_history 中没有特定字符串元素的 s field 。我对此进行了猜测:
matched_user = User |> where([u], ^device_id not in u.match_history) |> limit(1) |> VideoChat.Repo.one
但它似乎在not处破裂部分。有没有办法做到这一点?

最佳答案

尝试
User |> where([u], not ^device_id in u.match_history)

关于 Elixir + Ecto : How to do WHERE NOT IN [array]?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41005307/

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