当前正在使用MLS数据转储,其中所有日期都以MM / DD / YYYY格式格式化,试图获取最小/最大寿命
MIN( DateDiff( NOW(), idx_common.list_date ))) AS listage_min, MAX( DateDiff( NOW(), idx_common.list_date ))) AS listage_max
显然,这是不起作用的,因为idx_common.list_date采用了上述格式。
idx_common.list_date
有任何想法吗?
使用str_to_date进行转换idx_common.list_date。
MIN( DateDiff( NOW(), str_to_date(idx_common.list_date,'%m/%d/%Y') ))) AS listage_min, MAX( DateDiff( NOW(), str_to_date(idx_common.list_date,'%m/%d/%Y') ))) AS listage_max