使用 PHP 和 oci_bind_by_name 将值列表传递给 Oracle
我有一个想要绑定或传递给此 Oracle SQL 查询的数字列表。
SELECT
ad.lastname, ad.name, a.cc cc, sum(a.qt) qt
FROM a, ad
where ( ad.ci in (:idList) or (:idList is null))
and ad.ci (+) = a.ci
And A.Type = 'R'
And A.Cc In ('SIDI','SIND','RSU')
是否允许使用命令 oci_bind_by_name 将 :idList 与包含 Id 列表的字符串绑定?可以看作是序列化 Id 的字符串吗?
例子:
“仅仅”这似乎不可行,因为序列化列表不是 SQL 语法的一部分。有什么想法可以实现我的目标吗?
I have a list of numbers I wish to bind or pass to this Oracle SQL query.
SELECT
ad.lastname, ad.name, a.cc cc, sum(a.qt) qt
FROM a, ad
where ( ad.ci in (:idList) or (:idList is null))
and ad.ci (+) = a.ci
And A.Type = 'R'
And A.Cc In ('SIDI','SIND','RSU')
Is it allowable to use the command oci_bind_by_name to bind :idList with a string containing a list of Ids? Could be seen as a string that seralizes the Ids?
Example:
It seems unfeasible "just" because the serialized list is not part of SQL syntax. Any ideas to reach my goal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能使用字符串来执行此操作(除非您想使用 SQL 标记您的 id 列表)。
在这种情况下,oci_bind_by_name 需要一个字符串。
You can't do this with a string (unless you want to tokenize your id list with SQL).
oci_bind_by_name requires a string in this case.