본문 바로가기
IT/Database

[Mysql] WEEK 관련 함수 (YEARWEEK, WEEKDAY)

by 성준하이 2024. 5. 16.
반응형

mysql 을 사용중이라면 오늘이 몇년도의 몇번째 주 인지를 알수가 있다.

 

기본적으로 주를 구분하는 요일은 월요일로 되어있고 이 설정 역시 변경이 가능하다.

 

예제는 아래와 같다.

 SELECT YEARWEEK('2024-01-01');
        -> 202401

좀더 자세한 내용은 아래 사이트 참고 바란다.

https://www.w3schools.com/Sql/func_mysql_yearweek.asp

 

MySQL YEARWEEK() Function

W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

www.w3schools.com

 

 

또한 특정 날짜가 무슨 요일인지는 아래처럼 사용이 가능하다.

SELECT WEEKDAY('2024-01-02');
        -> 1

(0 = Monday, 1 = Tuesday, … 6 = Sunday).

역시 추가 내용은 사이트에서 참고 가능하다.

https://www.w3schools.com/mysql/func_mysql_weekday.asp

 

MySQL WEEKDAY() Function

W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

www.w3schools.com

 

반응형

댓글