문자열 Replace시 사용.
replace(X,Y,Z) | The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. The BINARY collating sequence is used for comparisons. If Y is an empty string then return X unchanged. If Z is not initially a string, it is cast to a UTF-8 string prior to processing. |
사용예 >
SELECT REPLACE(CountryName, "K", "L") FROM Country ;
'Programming > sqlite' 카테고리의 다른 글
Sqlite 문자 합치기. (0) | 2012.01.24 |
---|---|
SQLite 에서의 NULL 체크 (0) | 2012.01.24 |
sqlite 에서의 if문. (0) | 2012.01.24 |