Computer >> Máy Tính >  >> Lập trình >> MySQL

Chọn tất cả các địa chỉ email bắt đầu bằng 5 ký tự số (biểu thức chính quy) trong MySQL

Để nhận các địa chỉ email bắt đầu bằng 5 ký tự số, giải pháp tùy chọn là sử dụng REGEXP -

select *from yourTableName where yourColumnName regexp "^[0-9]{5}";

Đầu tiên chúng ta hãy tạo một bảng -

mysql> create table DemoTable
(
   UserEmailAddress varchar(100)
);
Query OK, 0 rows affected (0.76 sec)

Chèn một số bản ghi vào bảng bằng lệnh chèn -

mysql> insert into DemoTable values('[email protected]');
Query OK, 1 row affected (0.15 sec)
mysql> insert into DemoTable values('[email protected]');
Query OK, 1 row affected (0.12 sec)
mysql> insert into DemoTable values('[email protected]');
Query OK, 1 row affected (0.17 sec)
mysql> insert into DemoTable values('[email protected]');
Query OK, 1 row affected (0.43 sec)
mysql> insert into DemoTable values('[email protected]');
Query OK, 1 row affected (0.20 sec)

Hiển thị tất cả các bản ghi từ bảng bằng câu lệnh select -

mysql> select *from DemoTable;

Điều này sẽ tạo ra kết quả sau -

+----------------------------+
| UserEmailAddress           |
+----------------------------+
| [email protected]         |
| [email protected]       |
| [email protected] |
| [email protected]           |
| [email protected]        |
+----------------------------+
5 rows in set (0.00 sec)

Sau đây là truy vấn để chọn tất cả các địa chỉ email bắt đầu bằng 5 ký tự số -

mysql> select *from DemoTable where UserEmailAddress regexp "^[0-9]{5}";

Điều này sẽ tạo ra kết quả sau -

+----------------------------+
| UserEmailAddress           |
+----------------------------+
| [email protected] |
| [email protected]        |
+----------------------------+
2 rows in set (0.00 sec)