gpt4 book ai didi

python - 来自 Python 的 SOQL IN 查询

转载 作者:太空宇宙 更新时间:2023-11-03 16:35:10 25 4
gpt4 key购买 nike

我想知道是否有人知道如何使用 Beatbox 或简单的 salesforce 格式化 IN 查询。示例:

select id from lead where id in ('00Q3000000zLxkFEAS', '00Q3000000eODvUEAW')

在简单的销售队伍中,我有:

sf.get_sfcontacts_all(param="where Id in ({0})".format())

我尝试使用格式为 arg 的列表、元组和字符串,但不断收到格式错误的请求。

请问有什么帮助吗?

最佳答案

使用 Beatbox 和 python 2.7,您不应该得到格式错误的查询。发现下面的代码没有任何错误:

import beatbox

"salesforceusername and password"
username = 'xxx'
password = "xxx"
token = 'xxx'

"""conenct and authenticate"""
svc = beatbox.PythonClient()
svc.login(username, password+token)

"""execut SOQL query"""
res = svc.query("select id from lead where id in ('00Q3000000zLxkFEAS', '00Q3000000eODvUEAW')")

"""prints results in console"""
print(res)

关于python - 来自 Python 的 SOQL IN 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37286573/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com