First query table structure (sys_users): SELECT * from sys_users; The first method: Hide the middle four digits of the mobile phone number select REPLACE(mobile, SUBSTR(mobile,4,4), 'XXXX') from sys_users The second method: Hide the middle four digits of the mobile phone number (recommended) select insert(mobile, 4, 4, 'XXXX') from sys_users; The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Vue project @change multiple parameters to pass multiple events
>>: Example of how to set WordPress pseudo-static in Nginx
As the demand for front-end pages continues to in...
1 Introduction Kong is not a simple product. The ...
As the cost of building HTTPS websites decreases,...
1. If the user has the create routine permission,...
This time we set up an rtmp live broadcast server...
Recently, the project uses kubernetes (hereinafte...
Because I have always used vscode to develop fron...
Generic load/write methods Manually specify optio...
Preface This article mainly introduces the releva...
In order to avoid repeatedly entering the Docker ...
As an open source software, Apache is one of the ...
Today we will implement a fragmented image loadin...
Flex layout is a commonly used layout method nowa...
Background: Some experiments need to be completed...
When insert into employee values(null,'張三'...