Đầu tiên chúng ta hãy tạo một bảng -
mysql> create table DemoTable1345 -> ( -> UserEmailAddress text -> ); Query OK, 0 rows affected (0.42 sec)
Chèn một số bản ghi trong bảng bằng lệnh chèn. Chúng tôi đã chèn địa chỉ email tại đây -
mysql> insert into DemoTable1345 values('[email protected]'); Query OK, 1 row affected (0.09 sec) mysql> insert into DemoTable1345 values('[email protected]'); Query OK, 1 row affected (0.09 sec) mysql> insert into DemoTable1345 values('[email protected]'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable1345 values('[email protected]'); Query OK, 1 row affected (0.14 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 DemoTable1345;
Điều này sẽ tạo ra kết quả sau -
+------------------------+ | UserEmailAddress | +------------------------+ | [email protected] | | [email protected] | | [email protected] | | [email protected] | +------------------------+ 4 rows in set (0.00 sec)
Sau đây là truy vấn để che dấu địa chỉ email của người dùng với các miền khác nhau trong MySQL -
mysql> update DemoTable1345 set UserEmailAddress=replace(UserEmailAddress, '@gmail.com','@amz.com'); Query OK, 4 rows affected (0.18 sec) Rows matched: 4 Changed: 4 Warnings: 0
Hãy để chúng tôi kiểm tra các bản ghi bảng một lần nữa -
mysql> select * from DemoTable1345;
Điều này sẽ tạo ra kết quả sau -
+----------------------+ | UserEmailAddress | +----------------------+ | [email protected] | | [email protected] | | [email protected] | | [email protected] | +----------------------+ 4 rows in set (0.00 sec)