mysql에서 월을 쿼리하는 방법: 1. "select date_format(DATE_SUB(curdate(), INTERVAL 0 MONTH), '%m')"을 통해 이번 달을 쿼리합니다. 2. "INTERVAL 1 MONTH를 통해 이전 달을 쿼리합니다. ".
이 기사의 운영 환경: Windows 7 시스템, mysql 5.0, Dell G3.
mysql에서 월을 쿼리하는 방법은 무엇입니까?
mysql 월 데이터를 쿼리합니다.
//查看本月数据 SELECT * FROM content_publish WHERE date_format(publish_time, '%Y %m') = date_format(DATE_SUB(curdate(), INTERVAL 0 MONTH),'%Y %m') //查看上个月数据 SELECT * FROM content_publish WHERE date_format(publish_time, '%Y %m') = date_format(DATE_SUB(curdate(), INTERVAL 1 MONTH),'%Y %m') //查询上上个月数据 SELECT * FROM content_publish WHERE date_format(publish_time, '%Y %m') = date_format(DATE_SUB(curdate(), INTERVAL 2 MONTH),'%Y %m') //查询当前月份 select date_format(DATE_SUB(curdate(), INTERVAL 0 MONTH), '%m') //查询上个月月份 select date_format(DATE_SUB(curdate(), INTERVAL 1 MONTH), '%m') //查询上上个月月份 select date_format(DATE_SUB(curdate(), INTERVAL 0 MONTH), '%m')
오늘
select * from 表名 where to_days(时间字段名) = to_days(now());
어제
SELECT * FROM 表名 WHERE TO_DAYS( NOW( ) ) - TO_DAYS( 时间字段名) <= 1
지난 7일
SELECT * FROM 表名 where DATE_SUB(CURDATE(), INTERVAL 7 DAY) <= date(时间字段名)
거의 30 days
SELECT * FROM 表名 where DATE_SUB(CURDATE(), INTERVAL 30 DAY) <= date(时间字段名)
이번 달
SELECT * FROM 表名 WHERE DATE_FORMAT( 时间字段名, '%Y%m' ) = DATE_FORMAT( CURDATE( ) , '%Y%m' )
이전 달
SELECT * FROM 表名 WHERE PERIOD_DIFF( date_format( now( ) , '%Y%m' ) , date_format( 时间字段名, '%Y%m' ) ) =1
이번 분기 데이터 조회
select * from `ht_invoice_information` where QUARTER(create_date)=QUARTER(now());
지난 분기 데이터 조회
select * from `ht_invoice_information` where QUARTER(create_date)=QUARTER(DATE_SUB(now(),interval 1 QUARTER));
올해 조회' s data
select * from `ht_invoice_information` where YEAR(create_date)=YEAR(NOW());
작년 쿼리 data
select * from `ht_invoice_information` where year(create_date)=year(date_sub(now(),interval 1 year));
이번주 데이터 조회
SELECT name,submittime FROM enterprise WHERE YEARWEEK(date_format(submittime,'%Y-%m-%d')) = YEARWEEK(now());
지난주 데이터 조회
SELECT name,submittime FROM enterprise WHERE YEARWEEK(date_format(submittime,'%Y-%m-%d')) = YEARWEEK(now())-1;
지난 달 데이터 조회
select name,submittime from enterprise where date_format(submittime,'%Y-%m')=date_format(DATE_SUB(curdate(), INTERVAL 1 MONTH),'%Y-%m') select * from user where DATE_FORMAT(pudate,'%Y%m') = DATE_FORMAT(CURDATE(),'%Y%m') ; select * from user where WEEKOFYEAR(FROM_UNIXTIME(pudate,'%y-%m-%d')) = WEEKOFYEAR(now()) select * from user where MONTH(FROM_UNIXTIME(pudate,'%y-%m-%d')) = MONTH(now()) select * from user where YEAR(FROM_UNIXTIME(pudate,'%y-%m-%d')) = YEAR(now()) and MONTH(FROM_UNIXTIME(pudate,'%y-%m-%d')) = MONTH(now()) select * from user where pudate between 上月最后一天 and 下月第一天
이번 달 데이터 조회
select name,submittime from enterprise where date_format(submittime,'%Y-%m')=date_format(now(),'%Y-%m')
지금으로부터 6개월 후의 쿼리 월간 데이터
select name,submittime from enterprise where submittime between date_sub(now(),interval 6 month) and now();
추천 학습: "mysql 비디오 튜토리얼"
위 내용은 mysql에서 월을 쿼리하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!