설명
문법
SELECT CONCAT('Hello', ' ', 'World') AS Greeting;
결과
Greeting
Hello World
SELECT SUBSTRING('Hello World', 1, 5) AS SubStr;
SubStr