数据库
首页 > 数据库> > Python cx_Oracle中的Oracle准备语句的IN子句

Python cx_Oracle中的Oracle准备语句的IN子句

作者:互联网

我想在Python中使用cx_Oracle将IN子句与准备好的Oracle语句一起使用.

例如.查询-从员工的ID中选择ID(‘101′,’102′,’103’)

在python端,我有一个列表[101,102,103],我将其转换为这样的字符串(“ 101”,“ 102”,“ 103”),并在python中使用了以下代码-

import cx_Oracle
ids = [101, 102, 103]
ALL_IDS = "('{0}')".format("','".join(map(str, ids)))
conn = cx_Oracle.connect('username', 'pass', 'schema')
cursor = conn.cursor()
results = cursor.execute('select name from employee where id in :id_list', id_list=ALL_IDS)
names = [x[0] for x in cursor.description]
rows = results.fetchall()

这行不通.难道我做错了什么?

解决方法:

Oracle不支持此概念-而且您当然也不是第一个尝试此方法的人!您必须:

>为每个值创建单独的绑定变量-在Python中做起来相当简单明了
>使用关于Oracle类型的强制转换运算符创建子查询,如这篇文章所示:https://asktom.oracle.com/pls/asktom/f?p=100:11:0::::p11_question_id:210612357425
>使用存储过程来接受数组并直接在PL / SQL中执行多个查询
>或完全做其他事情!

标签:oracle,cx-oracle,prepared-statement,python
来源: https://codeday.me/bug/20191112/2023761.html