예, 대안은 CONCAT_WS()입니다. 먼저 테이블을 생성하겠습니다 -
mysql> create table DemoTable ( StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY, StudentName varchar(100) ); Query OK, 0 rows affected (0.74 sec)
예시
삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -
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)
select 문을 사용하여 테이블의 모든 레코드 표시 -
mysql> select *from DemoTable;
출력
+-----------+-------------+ | StudentId | StudentName | +-----------+-------------+ | 1 | Chris | | 2 | Robert | | 3 | Bob | +-----------+-------------+ 3 rows in set (0.00 sec)
MySQL에서 CONCAT()의 대안으로 작업하는 방법을 살펴보겠습니다 -
mysql> select concat_ws(SPACE(2), 'Student Name is:',StudentName) from DemoTable;
출력
+-----------------------------------------------------+ | 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)