웹이야기

[MySQL] LOCATE() 본문

D/ORACLE

[MySQL] LOCATE()

yeon.Biju 2020. 4. 14. 14:23

MySQL 문자열 함수와 연산자

 

LOCATE()

   -

 

LOCATE(substr, str)

LOCATE(substr, str, pos)

의 형태

 

The first syntax returns the position of the first occurence of substring substr in string str. The second syntax returns the position of the first occurence of substring substr in string str, starting at position pos. Returns 0 if substr is not in str. Returns NULL if any argument is NULL.

 

mysql> SELECT LOCATE('bar', 'foobarbar');
+----------------------------+
| LOCATE('bar', 'foobarbar') |
+----------------------------+
|                          4 |
+----------------------------+
1 row in set (0.00 sec)

mysql> SELECT LOCATE('xba4', 'foobar') ;
+--------------------------+
| LOCATE('xba4', 'foobar') |
+--------------------------+
|                        0 |
+--------------------------+
1 row in set (0.00 sec)

mysql> SELECT LOCATE('bar', 'foobarbar', 5) ;
+-------------------------------+
| LOCATE('bar', 'foobarbar', 5) |
+-------------------------------+
|                             7 |
+-------------------------------+
1 row in set (0.00 sec)

'D > ORACLE' 카테고리의 다른 글

[MySQL]TO_BASE64()  (0) 2020.06.11
[MySQL]SUBSTRING()  (0) 2020.06.11
오라클 hr 계정 unlock , hr 계정 lock 풀기  (0) 2020.03.22
오라클 연산자  (0) 2020.03.22
오라클 집합 연산자  (0) 2020.03.16
Comments