I don\'t know concatenation operator for MySQL.
I have tried this code for concatenation:
SELECT vend_name || \' (\' || vend_country || \')\' FROM Ve
Simply you can use CONCAT keyword to concatenate the Strings.. You can use it like
CONCAT
SELECT CONCAT(vend_name,'',vend_country) FROM vendors ORER BY name;