D’après Wikipédia : > Le terme concaténation […] désigne l’action de mettre bout à bout au moins deux chaînes (de caractères).
Simplement un petit mémo rapide sur la concaténation dans différents langages.
Javascript, jQuery, Java
variable1+variable2 "texte texte texte"+variable1
PHP
variable1.variable2 'texte texte texte'.variable1
C++
variable1<<variable2 "texte texte texte"<<variable1
SQL
CONCAT(variable1, variable2) CONCAT("texte texte texte", variable1)
Où CONCAT_WS
pour ne pas être embêté avec les champs vides.