Can I paste text before a variable in mysql?
@serial := 1 INSERT INTO test (some) VALUES (@serial+' Текст');
To concatenate (concatenate) strings in MySQL, the concat() function is used:
concat()
INSERT INTO test (some) VALUES (concat(@serial,' Текст'));
Source: https://ru.stackoverflow.com/questions/567755/More articles:Draw pixels on the Xorg-window using standard Linux linuxAnimation from Adobe After Effect in Android studioPrinciple of work exception phpMSVS2015: how to open database diagrams in server explorer?How to send an Ajax request to a web serviceHow to improve the code, one by one calling several threads executing methods of different classes?Centering the div in the center of the parent divThe rule for calculating the number of combinationstime difference between user and siteHow to make a path to the site without extension (.html, .php)All Articles