300x250
DB 테이블 내용 필드의 특정 문자를 새로운 문자로 교체 하고자 할 경우가 있다.
이때, replace 구문을 사용하면 된다.
mysql> update table1 set field1 = REPLACE( field1, 'from_str', 'to_str' );
* REPLACE 함수는 문자열에서 특정 문자열을 찾아 새로운 문자열로 바꾸는 함수이나,
전체문자열 부분에 필드명을 사용할 수 있다.
Returns the string str
with all
occurrences of the string from_str
replaced by the string to_str
.
REPLACE()
performs a
case-sensitive match when searching for
from_str
.
mysql> SELECT REPLACE('www.mysql.com', 'w', 'Ww'); -> 'WwWwWw.mysql.com'
This function is multi-byte safe.
* 출처
http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_replace
300x250
'서버관리' 카테고리의 다른 글
iptables 와 tcpdump 간의 우선 순위 (0) | 2014.04.20 |
---|---|
구글 웹로그 분석 범용 웹로그 분석으로 업그레이드 (1) | 2014.04.17 |
Apache 아파치 웹서버의 .htaccess 에서 핫링크 방지 쉽게 구성하는 방법 (0) | 2014.03.16 |
[리눅스] sendmail.cf 설정 tip (0) | 2014.03.14 |
Using web.config - Returning custom http error messages on IIS 7.5 (3) | 2014.03.02 |