rtrim()去掉值右边的所有空格 ltrim()去掉值左边的所有空格 trim()去掉值两边的空格
select concat(rtrim(name),'('rtrim(country),')') from vendors;