1. --今天
    2. select * from 表名 where to_days(时间字段名) = to_days(now());
    3. --昨天
    4. SELECT * FROM 表名 WHERE TO_DAYS( NOW( ) ) - TO_DAYS( 时间字段名) = 1
    5. --本周
    6. #默认是以周日开始
    7. SELECT * FROM 表名 WHERE YEARWEEK( date_format( 时间字段名,'%Y-%m-%d' ) ) = YEARWEEK( now() ) ;
    8. #以周一开始
    9. SELECT * FROM 表名 WHERE YEARWEEK( date_format( 时间字段名,'%Y-%m-%d'),1 ) = YEARWEEK( now(),1 ) ;
    10. --本月
    11. SELECT * FROM 表名 WHERE DATE_FORMAT( 时间字段名, '%Y%m' ) = DATE_FORMAT( CURDATE( ) ,'%Y%m' )
    12. --上一个月
    13. SELECT * FROM 表名 WHERE PERIOD_DIFF(date_format(now(),'%Y%m'),date_format(时间字段名,'%Y%m') =1
    14. --本年
    15. SELECT * FROM 表名 WHERE YEAR( 时间字段名 ) = YEAR( NOW( ) )
    16. --上一月
    17. SELECT * FROM 表名 WHERE PERIOD_DIFF( date_format( now( ) , '%Y%m' ) , date_format( 时间字段名, '%Y%m' ) ) =1
    18. --查询本季度数据
    19. select * from `ht_invoice_information` where QUARTER(create_date)=QUARTER(now());
    20. --查询上季度数据
    21. select * from `ht_invoice_information` where QUARTER(create_date)=QUARTER(DATE_SUB(now(),interval 1 QUARTER));
    22. --查询本年数据
    23. select * from `ht_invoice_information` where YEAR(create_date)=YEAR(NOW());
    24. --查询上年数据
    25. select * from `ht_invoice_information` where year(create_date)=year(date_sub(now(),interval 1 year));
    26. --查询当前这周的数据
    27. SELECT name,submittime FROM enterprise WHERE YEARWEEK(date_format(submittime,'%Y-%m-%d')) = YEARWEEK(now());
    28. --查询上周的数据
    29. SELECT name,submittime FROM enterprise WHERE YEARWEEK(date_format(submittime,'%Y-%m-%d')) = YEARWEEK(now())-1;
    30. --查询当前月份的数据
    31. select name,submittime from enterprise where date_format(submittime,'%Y-%m')=date_format(now(),'%Y-%m')
    32. --查询距离当前现在6个月的数据
    33. select name,submittime from enterprise where submittime between date_sub(now(),interval 6 month) and now();
    34. --查询上个月的数据
    35. select name,submittime from enterprise where date_format(submittime,'%Y-%m')=date_format(DATE_SUB(curdate(), INTERVAL 1 MONTH),'%Y-%m')
    36. select * from ` user ` where DATE_FORMAT(pudate, ' %Y%m ' ) = DATE_FORMAT(CURDATE(), ' %Y%m ' ) ;
    37. select * from user where WEEKOFYEAR(FROM_UNIXTIME(pudate,'%y-%m-%d')) = WEEKOFYEAR(now())
    38. select *
    39. from user
    40. where MONTH (FROM_UNIXTIME(pudate, ' %y-%m-%d ' )) = MONTH (now())
    41. select *
    42. from [ user ]
    43. where YEAR (FROM_UNIXTIME(pudate, ' %y-%m-%d ' )) = YEAR (now())
    44. and MONTH (FROM_UNIXTIME(pudate, ' %y-%m-%d ' )) = MONTH (now())
    45. select *
    46. from [ user ]
    47. where pudate between 上月最后一天
    48. and 下月第一天
    49. where date(regdate) = curdate();
    50. select * from test where year(regdate)=year(now()) and month(regdate)=month(now()) and day(regdate)=day(now())
    51. SELECT date( c_instime ) ,curdate( )
    52. FROM `t_score`
    53. WHERE 1
    54. LIMIT 0 , 30