MySQL SQL statement method to hide the middle four digits of the mobile phone number

MySQL SQL statement method to hide the middle four digits of the mobile phone number

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:
  • AngularJs custom filter to hide mobile phone number information
  • C# uses regular expressions to hide the middle four digits of the mobile phone number as *
  • How to replace the middle digits of a mobile phone number with * and hide the last few digits of an IP address using PHP
  • C# implementation method of hiding sensitive information such as mobile phone number and email address
  • PHP implements a custom function to hide the middle four digits of a mobile phone number with asterisks (*)
  • PHP uses asterisks to hide part of the user name, ID card, IP, mobile phone number, etc.
  • Regular expression to hide the middle 4 digits of the mobile phone number or only display the last 4 digits

<<:  Vue project @change multiple parameters to pass multiple events

>>:  Example of how to set WordPress pseudo-static in Nginx

Recommend

Some tips for using less in Vue projects

Table of contents Preface 1. Style penetration 1....

Vue Element front-end application development: Use of API Store View in Vuex

Table of contents Overview 1. Separation of front...

Detailed explanation of transaction isolation levels in MySql study notes

background When we talk about transactions, every...

Vue uses OSS to upload pictures or attachments

Use OSS to upload pictures or attachments in vue ...

Summary of basic operations for MySQL beginners

Library Operations Query 1.SHOW DATABASE; ----Que...

Talking about ContentType(s) from image/x-png

This also caused the inability to upload png files...

Html makes a simple and beautiful login page

Let’s take a look first. HTML source code: XML/HT...

Take you to understand the event scheduler EVENT in MySQL

The event scheduler in MySQL, EVENT, is also call...

MySQL 5.7.23 installation and configuration graphic tutorial

This article records the detailed installation pr...

Detailed explanation of mysql backup and recovery

Preface: The previous articles introduced the usa...

Introduction to general_log log knowledge points in MySQL

The following operation demonstrations are all ba...

How to understand SELinux under Linux

Table of contents 1. Introduction to SELinux 2. B...