gpt4 book ai didi

postgresql - Ecto:如何用不同的随机数更新所有记录

转载 作者:行者123 更新时间:2023-12-05 08:49:16 27 4
gpt4 key购买 nike

我在 postgresql 中有一个表,我想用一个随机数更新所有记录的“points”列的值。在其他语言中,我们可以循环遍历所有数据库记录,但我如何使用 ecto 来做到这一点?我试过这个:

 Repo.all(from u in User, update: User.changeset(u, %{points: :rand.uniform(100)}))

但它输出以下错误:

== Compilation error in file lib/hello_remote/user.ex ==
** (Ecto.Query.CompileError) malformed update `User.changeset(u, %{points: :rand.uniform(100)})` in query expression, expected a keyword list with set/push/pop as keys with field-value pairs as values
expanding macro: Ecto.Query.update/3
lib/hello_remote/user.ex:30: HelloRemote.User.update_points/0
expanding macro: Ecto.Query.from/2
lib/hello_remote/user.ex:30: HelloRemote.User.update_points/0
(elixir 1.10.4) lib/kernel/parallel_compiler.ex:304: anonymous fn/4 in Kernel.ParallelCompiler.spawn_workers/7

我也试过这个:

from(u in User)
|> Repo.update_all(set: [points: Enum.random(0..100)])

但是它用相同的值更新所有记录

最佳答案

您可以使用 fragment/1update_all/3 ,调用 PostgreSQL 函数来计算随机值,例如:

update(User, set: [points: fragment("floor(random()*100)")])
|> Repo.update_all([])

关于postgresql - Ecto:如何用不同的随机数更新所有记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64242752/

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