Đối với điều này, hãy sử dụng hàm REPLACE () và thay thế không gian trống bằng ký tự. Đầu tiên chúng ta hãy tạo một bảng -
mysql> create table DemoTable (Subject text); Query OK, 0 rows affected (0.86 sec)
Ví dụ
Chèn một số bản ghi vào bảng bằng lệnh chèn -
mysql> insert into DemoTable values('Introduction to MySQL'); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable values('Java in depth'); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable values('Data Structure and Algorithm'); Query OK, 1 row affected (0.16 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;
Đầu ra
+------------------------------+ | Subject | +------------------------------+ | Introduction to MySQL | | Java in depth | | Data Structure and Algorithm | +------------------------------+ 3 rows in set (0.00 sec)
Sau đây là truy vấn để thay thế không gian trống -
mysql> SELECT *,REPLACE(Subject,' ','_') as Subject_Name from DemoTable;
Đầu ra
+-------------------------------+------------------------------+ | Subject | Subject_Name | +-------------------------------+------------------------------+ | Introduction to MySQL | Introduction_to_MySQL | | Java in depth | Java_in_depth | | Data Structure and Algorithm | Data_Structure_and_Algorithm | +-------------------------------+------------------------------+ 3 rows in set (0.00 sec)