【代码报错】财务衍生的数据问题
由luvymhq创建,最终由small_q 被浏览 8 用户
关于财务衍生(最新一期)的数据问题
import dai
dai.query("""select a.instrument,a.date,shift,report_date
from cn_stock_financial_lf_shift a join cn_stock_prefactors b using(instrument,date)
where a.date between '{0}' and '{1}'
and b.pe_ttm>0
and list_days>=252
and st_status = 0
and list_sector in('1','2')
""".format('2024-04-19','2024-04-19')).df()
#'end_date':datetime.date.today().strftime("%Y-%m-%d"))
以上sql跑出来是有shift=0的记录的。但为什么在where 条件中限定shift=0 却跑不出结果?