Có, một giải pháp thay thế là CONCAT_WS (). Đầu tiên chúng ta hãy tạo một bảng -
mysql> create table DemoTable ( StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY, StudentName varchar(100) ); Query OK, 0 rows affected (0.74 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(StudentName) values('Chris'); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable(StudentName) values('Robert'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable(StudentName) values('Bob'); Query OK, 1 row affected (0.12 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
+-----------+-------------+ | StudentId | StudentName | +-----------+-------------+ | 1 | Chris | | 2 | Robert | | 3 | Bob | +-----------+-------------+ 3 rows in set (0.00 sec)
Hãy để chúng tôi xem cách làm việc với một thay thế của CONCAT () trong MySQL -
mysql> select concat_ws(SPACE(2), 'Student Name is:',StudentName) from DemoTable;
Đầu ra
+-----------------------------------------------------+ | concat_ws(SPACE(2), 'Student Name is:',StudentName) | +-----------------------------------------------------+ | Student Name is: Chris | | Student Name is: Robert | | Student Name is: Bob | +-----------------------------------------------------+ 3 rows in set (0.04 sec)