在潘达斯,我想利用CreatedDate >= 1/1/2015的机会数据。
目前,我正在提取所有的机会数据过滤之前,为CreatedDate。是否可以通过将CreatedDate条件添加到查询中来优化此过程?
现状:
query_result = service.query("SELECT ID, CreatedDate FROM Opportunity")
records = query_result['records']
oppty = pd.DataFrame(records)
oppty = oppty[(oppty['CreatedDate'] >= '2015-01-01')]https://stackoverflow.com/questions/30898318
复制相似问题