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 |
29 | 30 | 31 |
Tags
- Sring Functions and Operators
- Date and Time Functions
- 티베로
- MySQL
- 전자정부 표준프레임워크
- String Functions and Operators
- Data and Time Functions
- 오라클
- String Functions and Date Operators
- HTTP
- Tibero
- Oracle
- 윈도우
- Date and Time Function
- 전자정부표준프레임워크
- String Function and Operators
- SVN
- 방화벽
Archives
- Today
- Total
웹이야기
[MySQL] LEFT() 본문
MySQL 문자열 함수와 연산자
LEFT()
-
LEFT(str, len)
의 형태
Returns the leftmost len characters from the string str, or NULL if any argument is NULL.
mysql> SELECT LEFT ('foobarbar', 5) ;
+-----------------------+
| LEFT ('foobarbar', 5) |
+-----------------------+
| fooba |
+-----------------------+
1 row in set (0.00 sec)
mysql> SELECT LEFT ('foo', 5) ;
+-----------------+
| LEFT ('foo', 5) |
+-----------------+
| foo |
+-----------------+
1 row in set (0.00 sec)
'D > MySQL' 카테고리의 다른 글
[MySQL] LOWER() (0) | 2020.04.14 |
---|---|
[MySQL] LOAD_FILE() (0) | 2020.04.14 |
[MySQL] LCASE() (0) | 2020.04.13 |
[MySQL] INSTR() (0) | 2020.04.13 |
[MySQL] INSERT() (0) | 2020.04.13 |
Comments