如果數據大於目標日期代碼工作好選擇(>):
選擇
xyz.ID,
xyz.Gender,
xyz.geography,
xyz.code,
xyz.delivery_status,
abc.department_code
從v。表1為xyz
離開加入y。表二是abc
在
xyz。ID = abc。ID和
xyz。代碼= abc.code
xyz。partition_date <‘2021-01-01’
組由1、2、3、4、5、6
——這是工作在使用xyz。partition_date > = 2020-01-31
@Aman Sehgal @Stephan勞森@Darryll Petrancuri @sql-thetan
當比較日期字段,結果有時是錯誤的。
從你的解釋,我可以為你推薦以下:
從v選擇partition_date, count (*)。table1 group by partition_date在count (*) > 0
選擇to_date (partition_date, yyyy-MM-dd) v.table1 partition_dt