更新 PostgreSQL 数组中的值

发布于 2024-12-15 01:46:24 字数 166 浏览 0 评论 0原文

我在 PostgreSQL 数据库中有一些列是数组。如果该值不存在,我想在其中添加一个新值(在 UPDATE 中),否则,不要添加任何内容。我不想覆盖数组的当前值,只想向其中添加元素。

是否可以用普通 SQL 执行此操作,或者我需要一个函数吗?我正在使用 PostgreSQL。

I have some columns in PostgreSQL database that are array. I want to add a new value (in UPDATE) in it if the value don't exists, otherwise, don't add anything. I don't want to overwrite the current value of the array, only add the element to it.

Is it possible do this in plain SQL or do I need a function? I'm using PostgreSQL.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

若有似无的小暗淡 2024-12-22 01:46:24

这应该像整数数组 (integer[]) 的示例一样简单:

UPDATE tbl SET col = col || 5
WHERE  (5 = ANY(col)) IS NOT TRUE;

WHERE 子句如下:

WHERE  5 <> ALL(col)

也会捕获空数组 ' 的情况{}'::int[],但如果 NULL 值作为数组元素出现,则会失败。

如果您的数组从不包含 NULL 作为元素,请考虑实际的数组运算符 ,可能由 GIN 索引支持。

UPDATE tbl SET col = col || 5
WHERE  NOT col @> '{5}';

请参阅:

This should be as simple as this example for an integer array (integer[]):

UPDATE tbl SET col = col || 5
WHERE  (5 = ANY(col)) IS NOT TRUE;

A WHERE clause like:

WHERE  5 <> ALL(col)

would also catch the case of an empty array '{}'::int[], but fail if a NULL value appears as element of the array.

If your arrays never contain NULL as element, consider actual array operators, possibly supported by a GIN index.

UPDATE tbl SET col = col || 5
WHERE  NOT col @> '{5}';

See:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文