datediff(dd,日期的字段,getdate())=0 查询当日的记录
day(日期的字段)<=10 and datediff(month,日期的字段,getdate())=0 查询当月上旬的记录
(day(日期的字段) between 11 and 20) and datediff(month,日期的字段,getdate())=0 查询当月中旬的记录
21<=day(日期的字段) and datediff(month,日期的字段,getdate())=0 查询当月下旬的记录
datediff(month,日期的字段,getdate())=0 查询当月的记录
别的依次类推