pandas读取数据库日期,日期数据格式转换踩个坑

简单记录一下:
首先,我是用pandas自带的read_sql读取数据库数据,其中有个字段名为t_date,类型为date。一般读取后,pandas会自动把日期数据转为datetime.date格式。
然后我想取日期小于某个日期的所有行数据,使用方法为:

nav_df = nav_df[nav_df['t_date'] <= t_end]

其中t_end是datetime.date格式的日期,然后就报错:TypeError: ‘<=’ not supported between instances of ‘str’ and ‘datetime.date’。
看到报错信息:按理说都已经转为datetime.date了,为什么他会提示有‘str’格式呢?
然后我又把t_end转为字符串格式的日期,再运行代码,又报错:TypeError: ‘<=’ not supported between instances of ‘datetime.date’ and ‘str’。
WC!我以为代码在玩我。。。
结果想了想,我猜测,读取数据库中的日期数据,既有datetime.date格式的数据,也有字符串格式的数据。
下面我进行手动转换,做验证:

def str_to_date(x):
    if isinstance(x,str):
        return datetime.datetime.strptime(x,'%Y-%m-%d')
    if isinstance(x,datetime.datetime):
        return x
nav_df['t_date']=nav_df['t_date'].apply(lambda x:str_to_date(x))

结果运行代码报错:ValueError: time data ‘0000-00-00’ does not match format ‘%Y-%m-%d’。
这时我去查询数据才发现,原来有脏数据,日期为0000-00-00。结果pandas就不能把这个转为datetime.date格式了,还是字符串格式的。
结果就是:先把脏数据处理掉,再进行后面的运算。
今天又涨了个记性:数据真的不能完全信啊,真的什么可能脏数据都会出现!!!

你可能感兴趣的:(mysql,python)