mysql获取指定日期是当年第几周,指定日期所在周的开始和结束日期

Posted Rogers1998

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql获取指定日期是当年第几周,指定日期所在周的开始和结束日期相关的知识,希望对你有一定的参考价值。

描述

最近在刷mysql的题目,遇到指定日期是当年第几周的问题。

解决

0、总结

先总结,具体使用和区别看下文:

# 一、返回第几周
select date_format('2023-01-01','%v') # 返回52,字符样式是小写,星期一是一周的第一天,
									  # 2023年的新的星期还没开始,
									  # 返回了2022年的第52周,实际上是2023年的第0周
select date_format('2023-01-01','%V') # 返回01,大写,星期天是一周的第一天
select week('2023-01-01', 0) # 返回1,这里week函数的第二个参数[0,1,2]的区别在下文提到
select week('2023-01-01', 1) # 返回0
select week('2023-01-01', 2) # 返回1
# 二、返回一周开始和结束
# 1、星期日为一周的开始
select 
	date(now()) as date, 
	date(subdate(now(), date_format(now(), '%w'))) as weekStart,
	date(subdate(now(), (date_format(now(), '%w')-6))) as weekEnd;

# 2、星期一为一周的开始
select 
	date(now()) as date,
	date(subdate(now(), (date_format(now(), '%w')+6)%7)) as weekStart,
	date(subdate(now(),  (date_format(now(), '%w')-7)%7)) as weekEnd

1、返回第几周

方法1:使用date_format函数

select date_format('2023-01-01','%v') #返回52,小写,星期一是一周的第一天,2023年的新的星期还没开始,返回了2022年的第52周,实际上是2023年的第0周
select date_format('2023-01-01','%V') #返回01,大写,星期天是一周的第一天

第二个参数的字符样式
凡是与周有关的样式
小写的为星期一是一周的第一天;大写的都为星期日是一周的第一天;(记忆:西方人基督教有礼拜日,耶稣为大(大写))

方法2:使用week函数

select week('2023-01-01', 0) # 返回1
select week('2023-01-01', 1) # 返回0
select week('2023-01-01', 2) # 返回1

代码运行结果:

week()函数使用:

week(符合时间格式的要求的日期或字符串,模式[0,1,2])
当模式为0时,对照模式表可以得知其计算逻辑是:把星期日当做一周的第一天,且第一周是以2023年的第一个星期日开始的,且在2023年的第一个星期日前那些属于2023年的天数都归为第0周。而2023年1月1日刚好是2023年第一个星期日,所以返回的结果是1。

当模式为1时,对照模式表可以得知其计算逻辑是:把星期一当做一周的第一天,且1月1日到本年第一个周一的天数超过3天,则认定这几天处于本年的第1周,若天数没超过3天(不足4天),则认定这几天处于本年的第0周。而2023年1月1日到第一个周一(2023年1月2日)只有1天。所以认定2023年1月1日属于2023年的第0周,所以返回的结果为0。

当模式为2时,对照模式表可以得知其计算逻辑是:把星期日当做一周的第一天,且第一周是以该年的第一个星期日开始的,前面的日期都算作上年度的最后一周(而模式0则是把这几天算作为第0周)。这里以2021年为例,2021年1月2日是2021年第一个星期日之前日期,所以认定这几天属于2020年的最后一周(2020年的第52周),所以select week('2021-01-02',3)返回的结果为52。

2、指定日期所在周的开始和结束日期

参考:mysql小知识:根据指定日期,获取是当年第几周,但是当指定日期为星期天时有bug,稍加修改符合要求

# 星期日为一周的开始
select 
	date(now()) as date, 
	date(subdate(now(), date_format(now(), '%w'))) as weekStart,
	date(subdate(now(), (date_format(now(), '%w')-6))) as weekEnd;

# 星期一为一周的开始
select 
	date(now()) as date,
	date(subdate(now(), (date_format(now(), '%w')+6)%7)) as weekStart,
	date(subdate(now(),  (date_format(now(), '%w')-7)%7)) as weekEnd

subdate函数用法:
  subdate(当前日期指定天数),日期的减法,返回当前日期-指定天数的日期,
  如select subdate('2022-06-26',3)返回的是2022-06-23,因为2022-06-26-3=2022-06-23

结果示例:
星期日为一周的开始

星期一为一周的开始

JAVA 日期工具类:日期获取周,获取指定周周一周日,某月月初月末日期,日期时间戳字符串转换,日期加减等

JAVA 日期工具类

  • 获取某天00:00:00点的时间戳
  • 日期获取周
  • 日期获取星期几
  • 获取时间戳属于当月的哪天
  • 获取指定周周一周日
  • 获取某月月初月末日期
  • 根据星期几获取日期
  • 获取年月日,时分秒
  • 根据day获取所在周,周一周日
  • 根据day获取所在月,月初月末日期
  • 根据day获取上月月末的时间戳
  • 日期时间戳字符串转换
  • 日期加减等

源码

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-lang3</artifactId>
    <version>3.5</version>
</dependency>
<dependency>
    <groupId>org.projectlombok</gr.oupId>
    <artifactId>lombok</artifactId>.1
    <version>1.18.8</version>
</dependency>
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang.time.DateFormatUtils;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;

/*************************************
 *Class Name: TimeUtils
 *Description: <时间工具类>
 *@author: Seminar
 *@create: 2022/9/15
 *@since 1.0.0
 *************************************/
@Slf4j
public class TimeUtils 

    public static final long ONEDAYMILLIS = 24 * 60 * 60 * 1000;
    public static final String Y_M_D = "yyyy-MM-dd";
    public static final String YMD = "yyyyMMdd";
    public static final String YMDHMS = "yyyy-MM-dd HH:mm:ss.SSS";

    /**
     * 获取当天的00:00:00的时间戳
     *
     * @return
     */
    public static long getBeginMillisOfDay() 
        Calendar calendar = Calendar.getInstance();
        calendar.setTime(new Date());
        calendar.set(Calendar.HOUR_OF_DAY, 0);
        calendar.set(Calendar.MINUTE, 0);
        calendar.set(Calendar.SECOND, 0);
        return calendar.getTimeInMillis();
    

    /**
     * 获取某天的00:00:00的时间戳
     *
     * @param millis 毫秒时间戳
     * @return
     */
    public static long getBeginMillisOfDay(long millis) 
        Calendar calendar = Calendar.getInstance();
        calendar.setTime(new Date(millis));
        calendar.set(Calendar.HOUR_OF_DAY, 0);
        calendar.set(Calendar.MINUTE, 0);
        calendar.set(Calendar.SECOND, 0);
        return calendar.getTimeInMillis();
    

    /**
     * 获取时间戳戳是星期几
     *
     * @param date
     * @return 当前日期是星期几
     */
    public String getWeekOfDate(Date date) 
        String[] weekDays = "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六";
        Calendar cal = Calendar.getInstance();
        cal.setTime(date);
        int w = cal.get(Calendar.DAY_OF_WEEK) - 1;
        if (w < 0)
            w = 0;
//        log.info("   ", cal.get(Calendar.DAY_OF_WEEK), w, weekDays[w]);
        return weekDays[w];
    

    /**
     * 获取时间戳是星期几
     *
     * @param
     * @return
     */
    public static int getIntWeekOfDate(long millis) 
        Calendar cal = Calendar.getInstance();
        cal.setTime(new Date(millis));
        return cal.get(Calendar.DAY_OF_WEEK);
    

    /**
     * 获取时间戳属于当月的哪天
     *
     * @param millis
     * @return
     */
    public static Integer getDayOfMonth(long millis) 
        Calendar cal = Calendar.getInstance();
        cal.setTime(new Date(millis));
        int w = cal.get(Calendar.DAY_OF_MONTH);
        return w;
    


    /**
     * 获取年月日
     *
     * @param epochSecond
     * @return
     */
    public static String getYmd(Long epochSecond) 
        SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
        return sdf.format(new Date(epochSecond));
    

    /**
     * 获取年月
     *
     * @param millis
     * @return
     */
    public static String getYm(Long millis) 
        SimpleDateFormat sdf = new SimpleDateFormat("yyyyMM");
        return sdf.format(new Date(millis));
    

    /**
     * 获取上月月末的时间戳
     *
     * @param epochSecond
     * @return
     */
    public static long getLastMonthMills(Long epochSecond) 
        SimpleDateFormat sdf = new SimpleDateFormat(Y_M_D);
        Calendar cale = Calendar.getInstance();
        if (epochSecond != null && epochSecond != 0L) 
            Date date = new Date();
            date.setTime(epochSecond);
            cale.setTime(date);
        

        int firstDay = cale.getActualMinimum(Calendar.DAY_OF_MONTH);//获取月最小天数
        cale.set(Calendar.DAY_OF_MONTH, firstDay);//设置日历中月份的最小天数
        return cale.getTimeInMillis() - ONEDAYMILLIS;
    

    /**
     * 获取某个月的月初日期
     *
     * @param epochSecond
     * @return
     */
    public static String getMonthFirstDay(Long epochSecond) 
        SimpleDateFormat sdf = new SimpleDateFormat(Y_M_D);
        Calendar cale = Calendar.getInstance();
        if (epochSecond != null && epochSecond != 0L) 
            Date date = new Date();
            date.setTime(epochSecond);
            cale.setTime(date);
        

        int firstDay = cale.getActualMinimum(Calendar.DAY_OF_MONTH);//获取月最小天数
        cale.set(Calendar.DAY_OF_MONTH, firstDay);//设置日历中月份的最小天数
        return sdf.format(cale.getTime());
    

    /**
     * 获取某个月的月末日期
     *
     * @param epochSecond
     * @return
     */
    public static String getMonthLastDay(Long epochSecond) 
        SimpleDateFormat sdf = new SimpleDateFormat(Y_M_D);
        Calendar cale = Calendar.getInstance();
        if (epochSecond != null && epochSecond != 0L) 
            Date date = new Date();
            date.setTime(epochSecond);
            cale.setTime(date);
        

        int lastDay = cale.getActualMaximum(Calendar.DAY_OF_MONTH);//获取月最大天数
        cale.set(Calendar.DAY_OF_MONTH, lastDay);//设置日历中月份的最大天数
        return sdf.format(cale.getTime());
    

    /**
     * 获取day所在月,月初日期
     *
     * @param day
     * @return
     */
    public static String getMonthFirstDay(String day, String pattern) throws ParseException 
        SimpleDateFormat sdf = new SimpleDateFormat(pattern);
        Calendar cale = Calendar.getInstance();
        Date date = sdf.parse(day);
        cale.setTime(date);

        int firstDay = cale.getActualMinimum(Calendar.DAY_OF_MONTH);//获取月最小天数
        cale.set(Calendar.DAY_OF_MONTH, firstDay);//设置日历中月份的最小天数
        return sdf.format(cale.getTime());
    

    /**
     * 获取day所在月,月末日期
     *
     * @param day
     * @return
     */
    public static String getMonthLastDay(String day, String pattern) throws ParseException 
        SimpleDateFormat sdf = new SimpleDateFormat(pattern);
        Calendar cale = Calendar.getInstance();
        Date date = sdf.parse(day);
        cale.setTime(date);
        int lastDay = cale.getActualMaximum(Calendar.DAY_OF_MONTH);//获取月最大天数
        cale.set(Calendar.DAY_OF_MONTH, lastDay);//设置日历中月份的最大天数
        return sdf.format(cale.getTime());
    

    /**
     * 根据星期获取日期
     *
     * @param week 星期几 1代码星期日,2代表星期一。。。7代表星期六
     * @return
     */
    public static Date getDateByWeek(int week) 
        int targetWeek = week;
        Calendar c = Calendar.getInstance();
        // 当前日期星期数
        int currWeek = c.get(Calendar.DAY_OF_WEEK);
        do 
            if (currWeek == targetWeek) 
                // 如果所给星期数和当前日期星期数相等则向后推7天
                c.add(Calendar.DAY_OF_MONTH, 7);
             else if (currWeek < week) 
                currWeek--;
            
         while (currWeek != targetWeek);
        return c.getTime();
    

    /**
     * 根据年月获取月末最后一天日期
     *
     * @param year
     * @param month
     * @return
     */
    public static String getLastDay(int year, int month, String format) 
        Calendar cale = Calendar.getInstance();

        cale.set(Calendar.YEAR, year);//赋值年份
        cale.set(Calendar.MONTH, month - 1);//赋值月份
        int lastDay = cale.getActualMaximum(Calendar.DAY_OF_MONTH);//获取月最大天数
        cale.set(Calendar.DAY_OF_MONTH, lastDay);//设置日历中月份的最大天数
        SimpleDateFormat sdf = new SimpleDateFormat(format);    //格式化日期yyyy-MM-dd
        String lastDayOfMonth = sdf.format(cale.getTime());
        return lastDayOfMonth;
    

    /**
     * 获取某月的第一天
     *
     * @param timeSecs 时间戳13位ms
     * @param format   格式化字符串
     * @return
     */
    public static String getFirstDay(Long timeSecs, String format) 
        Calendar cale = Calendar.getInstance();
        if (timeSecs != null && timeSecs != 0L) 
            Date date = new Date();
            date.setTime(timeSecs);
            cale.setTime(date);
        
        int lastDay = cale.getActualMinimum(Calendar.DAY_OF_MONTH);//获取月最大天数
        cale.set(Calendar.DAY_OF_MONTH, lastDay);//设置日历中月份的最大天数
        SimpleDateFormat sdf = new SimpleDateFormat(format);//格式化日期yyyy-MM-dd
        String lastDayOfMonth = sdf.format(cale.getTime());
        return lastDayOfMonth;
    

    /**
     * 根据年月获取月初第一天日期
     *
     * @param year   年
     * @param month  月
     * @param format 格式化日期
     * @return
     */
    public static String getFirstDay(int year, int month, String format) 
        Calendar cale = Calendar.getInstance();

        cale.set(Calendar.YEAR, year);    //赋值年份
        cale.set(Calendar.MONTH, month - 1);//赋值月份
        int lastDay = cale.getActualMinimum(Calendar.DAY_OF_MONTH);//获取月最大天数
        cale.set(Calendar.DAY_OF_MONTH, lastDay);//设置日历中月份的最大天数
        SimpleDateFormat sdf = new SimpleDateFormat(format);//格式化日期yyyy-MM-dd
        String lastDayOfMonth = sdf.format(cale.getTime());
        return lastDayOfMonth;
    

    /**
     * 获取某月的最后一天
     *
     * @param timeSecs 时间戳12位毫秒
     * @param format   格式化日期
     * @return
     */
    public static String getLastDay(Long timeSecs, String format) 
        Calendar cale = Calendar.getInstance();
        if (timeSecs != null && timeSecs != 0L) 
            Date date = new Date();
            date.setTime(timeSecs);
            cale.setTime(date);
        

        int lastDay = cale.getActualMaximum(Calendar.DAY_OF_MONTH);//获取月最大天数
        cale.set(Calendar.DAY_OF_MONTH, lastDay);//设置日历中月份的最大天数
        SimpleDateFormat sdf = new SimpleDateFormat(format);//格式化日期yyyy-MM-dd
        String lastDayOfMonth = sdf.format(cale.getTime());
        return lastDayOfMonth;
    

    /**
     * 根据日期获取周
     *
     * @param date
     * @return 45
     */
    public static int getWeek(Date date) 
        GregorianCalendar g = new GregorianCalendar();
        g.setTime(date);
        return g.get(Calendar.WEEK_OF_YEAR); //获得周数
    

    /**
     * 根据日期获取年+周
     *
     * @param day 20221103
     * @return 202245
     */
    public static String getWeek(String day) throws ParseException 
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat(YMD);
        Date date = simpleDateFormat.parse(day);
        GregorianCalendar g = new GregorianCalendar();
        g.setTime(date);
//        g.get(Calendar.WEEK_OF_YEAR); //获得周数
        return day.substring(0, 4) + g.get(Calendar.WEEK_OF_YEAR);
    

    /**
     * 日期格式化
     */
    public static String format(Calendar c, String pattern) 
        Calendar calendar 

以上是关于mysql获取指定日期是当年第几周,指定日期所在周的开始和结束日期的主要内容,如果未能解决你的问题,请参考以下文章

Java日期查询

Java根据当前第几周获取周一和周日的日期方法

Java根据当前第几周获取周一和周日的日期方法

JAVA 日期工具类:日期获取周,获取指定周周一周日,某月月初月末日期,日期时间戳字符串转换,日期加减等

JAVA 日期工具类:日期获取周,获取指定周周一周日,某月月初月末日期,日期时间戳字符串转换,日期加减等

SQL SERVER查询时间是一年中第几周的函数