728x90
// 전화번호 마스킹처리(**) 하여 보여주기
// REPLACE(바꿀려는 필드명, '수정전 문자열', '수정후 문자열')
use 접속할DB명;
select uid, replace(tel,substring(tel,5,2),'**') from data limit 10;
select uid, replace(tel,right(tel,2),'**') from data limit 10;
select uid, tel, substring(tel,1,3),replace(tel,right(tel,2),'**') from data where tel LIKE '01%';
728x90
'SQL' 카테고리의 다른 글
[MySQL] replace (문자열 치환) (0) | 2015.05.12 |
---|---|
MySQL Type 설계를 잘못해서 개고생 (0) | 2015.04.30 |
[SQL] VoC 처리 SQL 및 decode 함수 (0) | 2015.04.08 |
[MySQL] IF Select (0) | 2015.04.03 |
[MySQL] 조건에 따라서 값을 지정해 주는 CASE문 (0) | 2015.02.28 |