WHERE 절과 함께 CONCAT_WS() 함수를 사용할 때 출력은 WHERE 절에 제공된 조건을 기반으로 합니다. 다음과 같은 'Student' 테이블의 예에서 이해할 수 있습니다.
예시
mysql> Select CONCAT_WS(' ',Name, Last_name, 'Resident of', Address, 'is studying', Subject)AS 'Student Detail' from student WHERE id = 20; +----------------------------------------------------------------+ | Student Detail | +----------------------------------------------------------------+ | Gaurav Rathore Resident of Jaipur is studying Computers | +----------------------------------------------------------------+ 1 row in set (0.00 sec)