String concatenation in MySQL

I am using MySQL and MySQL Workbench 5.2 CE. When I try to concatenate 2 columns, last_name and first_name, it doesn’t work :

select first_name + last_name as "Name" from test.student

Leave a Comment