Can I paste text before a variable in mysql?

@serial := 1 INSERT INTO test (some) VALUES (@serial+' Текст'); 

    1 answer 1

    To concatenate (concatenate) strings in MySQL, the concat() function is used:

     INSERT INTO test (some) VALUES (concat(@serial,' Текст'));