Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 전자정부 표준프레임워크
- Tibero
- MySQL
- SVN
- 오라클
- 방화벽
- String Function and Operators
- String Functions and Operators
- Date and Time Functions
- HTTP
- 티베로
- Data and Time Functions
- 전자정부표준프레임워크
- Oracle
- Sring Functions and Operators
- 윈도우
- Date and Time Function
- String Functions and Date Operators
Archives
- Today
- Total
웹이야기
[MySQL]UPPER() 본문
MySQL 문자열 함수와 연산자
UPPER()
-
UPPER(str)
의 형태
Returns the string str with all characters changed to uppercase according to the current character set mapping.
mysql> SELECT UPPER('Hej');
+--------------+
| UPPER('Hej') |
+--------------+
| HEJ |
+--------------+
1 row in set (0.00 sec)
UCASE()
[MySQL]UCASE()
MySQL 문자열 함수와 연산자 UCASE() - UCASE(str) 의 형태 UCASE() is a synonym for UPPER(). UCASE() used within views is rewritten as UPPER().
webobj.tistory.com
LOWER()
[MySQL] LOWER()
MySQL 문자열 함수와 연산자 LOWER() - LOWER(str) 의 형태 Returns the string str with all characters changed to lowercase according to the current character set mapping. The default is utf8mb4. (MyS..
webobj.tistory.com
'D > MySQL' 카테고리의 다른 글
[MySQL] 칼럼 추가 / 삭제 (0) | 2021.01.22 |
---|---|
[MySQL]WEIGHT_STRING() (0) | 2020.06.18 |
[MySQL]UNHEX() (0) | 2020.06.18 |
[MySQL]UCASE() (0) | 2020.06.18 |
[MySQL]TRIM() (0) | 2020.06.18 |
Comments