我正在使用teradatasql python包,但是我找不到任何关于如何将命名参数传递到cursor.execute()
例如: select ?month_end_dt,?month_begin_dt
我希望能够将字典中的变量传递到命名参数中。
谢谢
发布于 2020-07-13 20:22:54
有关execute()方法的文档,请查看https://pypi.org/project/teradatasql/#CursorMethods!
发布于 2020-07-14 00:57:53
teradatasql包不支持命名参数。它只支持未命名的问号参数标记。
https://stackoverflow.com/questions/62875697
复制相似问题