我想知道是否有人知道如何使用beatbox 或简单的salesforce 格式化IN 查询。例子:
select id from lead where id in ('00Q3000000zLxkFEAS', '00Q3000000eODvUEAW')
在简单的销售人员中,我有:
sf.get_sfcontacts_all(param="where Id in ({0})".format())
我尝试使用 arg 格式的列表、元组和字符串,但不断收到格式错误的请求。
请问有什么帮助吗?