1

我正在尝试使用 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                            
4

2 回答 2

2

除了@user2993886's answer之外,2018/01/19在 SQLite 中不是有效日期。格式已记录在案,请参阅“时间字符串”。

您可以转换2018/01/192018-01-19with replace(e.Date, '/', '-')。最好使用 an 永久执行此操作,update并在插入时使用正确的格式。使用本机日期格式会更快(可以对查询进行索引)并避免将来出现此类错误。

于 2018-04-09T16:36:42.113 回答
1

而不是使用date('today')你应该使用date('now')

SQLite 文档中的更多详细信息:

https://www.sqlite.org/lang_datefunc.html

于 2018-04-09T16:10:23.527 回答