作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们正在调用过程 public.update_records (p_record_id integer, p_notification_list text)
并将 p_notification_list 值分配为
ct.new_notification_id::text = ANY(string_to_array(p_notification_list,','))
传递给p_notification_list的值为'<notification_id_1>','<notification_id_2>'
等等
并得到错误,因为 op ANY/ALL (array) requires array on right side
请推荐
最佳答案
对我有用:
regress=> SELECT 'a' = ANY (string_to_array('a,b,c', ','));
?column?
----------
t
(1 row)
所以我认为这个问题没有显示出任何问题。这就是为什么您需要显示完整语句、您的 Pg 版本、表定义等。
关于postgresql - 错误 : op ANY/ALL (array) requires array on right side,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25106853/
我是一名优秀的程序员,十分优秀!