일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- String Functions and Date Operators
- Sring Functions and Operators
- 방화벽
- 윈도우
- String Functions and Operators
- 전자정부표준프레임워크
- String Function and Operators
- 오라클
- Date and Time Functions
- Date and Time Function
- Tibero
- MySQL
- SVN
- Oracle
- 전자정부 표준프레임워크
- Data and Time Functions
- 티베로
- HTTP
- Today
- Total
웹이야기
MySQL MONTHNAME() 본문
MySQL 날짜함수, 시간함수
MONTHNAME()
- 달의 이름을 구해준다.
MONTHNAME(date)
의 형태
Returns the full name of the month for date. The language used for the name is controlled by the value of the lc_time_names system variables.
mysql> SELECT MONTHNAME(NOW());
+------------------+
| MONTHNAME(NOW()) |
+------------------+
| April |
+------------------+
1 row in set (0.00 sec)
mysql> SELECT MONTHNAME('202-00-00');
+------------------------+
| MONTHNAME('202-00-00') |
+------------------------+
| NULL |
+------------------------+
1 row in set (0.00 sec)
mysql> SELECT MONTHNAME('202-01-00');
+------------------------+
| MONTHNAME('202-01-00') |
+------------------------+
| January |
+------------------------+
1 row in set (0.00 sec)
'D > MySQL' 카테고리의 다른 글
MySQL PERIOD_ADD() (0) | 2020.04.02 |
---|---|
MySQL NOW() (0) | 2020.04.02 |
MySQL MONTH() (0) | 2020.04.02 |
MySQL MINUTE() (0) | 2020.04.02 |
MySQL MICROSECOND() (0) | 2020.04.02 |