What is the use of CONCAT() in Mysql?
It is used to concatenate two or more strings.
Example
SELECT CONCAT('BestInterview', ' ', 'Question') AS 'Name';
It is used to concatenate two or more strings.
SELECT CONCAT('BestInterview', ' ', 'Question') AS 'Name';