mysql簡單脫敏

czxin788發表於2021-01-25


update patient set selfphone=concat(left(selfphone ,3),'*****',right(selfphone ,4))
update patient set familyphone=concat(left(familyphone ,3),'*****',right(familyphone ,4));
update patient set id_num=concat(left(id_num,6),'*****',right(id_num,2));
update patient set birthday=concat(left(birthday,4),'**');
update patient set name=concat(left(name,1),'**');


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28916011/viewspace-2752535/,如需轉載,請註明出處,否則將追究法律責任。

相關文章