我正在尝试使用 Pandasql 来查询我的数据框。然而,它给了我一个空的数据框,即使我知道它不应该。我认为这是因为我在 where 子句中错误地使用了今天的日期。以下是我的部分代码:
df_event2import=[]
today = now.strftime("%Y-%m-%d")
q = """ select e.Date, e.SITA, e.Events from df_event e where e.Date >= date('today') """
df_event2import=((pandasql.sqldf(q, locals())))
df_all_event2import=df_all_event2import.append(df_event2import,ignore_index=True)
print(df_all_event2import)
这里要求的是一些示例数据。这是我在 where 子句中使用 date('now') 而不是 date('today') 后得到的。如您所见,它给了我从一月份开始的数据,这不是我想要的,我想要从今天开始的数据。
Date SITA Events
0 2018/01/01 ABZPD New Years Day Bank Holiday
1 2018/01/02 ABZPD
2 2018/01/03 ABZPD
3 2018/01/04 ABZPD
4 2018/01/05 ABZPD
5 2018/01/06 ABZPD
6 2018/01/07 ABZPD
7 2018/01/08 ABZPD
8 2018/01/09 ABZPD
9 2018/01/10 ABZPD
10 2018/01/11 ABZPD
11 2018/01/12 ABZPD
12 2018/01/13 ABZPD
13 2018/01/14 ABZPD
14 2018/01/15 ABZPD
15 2018/01/16 ABZPD
16 2018/01/17 ABZPD
17 2018/01/18 ABZPD
18 2018/01/19 ABZPD