여러 문자열을 하나로 합치거나 연결
SELECT CONCAT('string1', 'string2', ...);
SELECT CONCAT('concat', '', 'test');
SELECT CONCAT('이름:', name) FROM celeb;