m0_37908418 2021-08-23 17:36 采纳率: 70.2%
浏览 51
已结题

python 应用sql 文件 查出的数据只有800条,但这个sql 在数据库查询有5w 条

怎样处理这种问题,网上查说可以分批 查 但无详细说明,是什么原因同一个sql 语句放入python 执行就得不到全部数据?
请提出详细方案 可给全部奖赏哦

select sh_code,cast(trx_date as date) opendate,cashi_no,trx_type, count(trx_no) cunt from trx_hdr group by cast(trx_date as date),sh_code,cashi_no,trx_type having cast (trx_date as date) >='2021-01-01' order by sh_code"

where substring(cashi_no,5,2) in ('21','22') and cashi_no like('____21%') or cashi_no like('____22%') group by cast(trx_date as date),sh_code,cashi_no,trx_type having cast (trx_date as date) >='2021-01-01' order by sh_code
我在sql server 执行有几万条记录,放到python 只有几百条 不知什么问题

  • 写回答

3条回答 默认 最新

  • CSDN专家-showbo 2023-03-09 16:17
    关注

    1

    I sort of figured out the problem. It was silly at the end. It was a race condition!

    This is how my actual code was organized :

    Code Block 1
    {code which calls an API which creates an entry in Accounts table &
    Creates corresponding entries in Product table(10 entries)}
    ......

    Code Block2
    {The code I had posted in my question}
    The problem was that the API(called in Code Block 1) took a few seconds to add 10 entries into the Product table.
    来源:

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

问题事件

  • 系统已结题 3月17日
  • 已采纳回答 3月9日
  • 创建了问题 8月23日

悬赏问题

  • ¥15 在若依框架下实现人脸识别
  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同