作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
cur.execute('select* form table where a = '?' and b = '?' and c = '?'', (val1,val2,val3))
我想用 val1,2,3 替换这些占位符
最佳答案
Oracle 不使用“?”作为绑定(bind)变量的占位符。它使用冒号前缀的名称,例如 :1
或 :empno
。
参见Using Bind Variables在 cx_Oracle 文档中。另请查看 examples .
尝试如下:
cur.execute('select * from table where a = :abv and b = :bbv and c = :cbv', [val1, val2, aval3])
或
cur.execute('select * from table where a = :abv and b = :bbv and c = :cbv', abv = val1, bbv = val2, cbv = val3])
关于python - 如何将 cx_Oracle 查询中的 '?' 替换为提供的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59731445/
我是一名优秀的程序员,十分优秀!