如果a、b都是字符串的话可以这样写select (a+b) c from table
字符串用 || 相连select a||b as c from table1;
select concat(a,b) from table1 ;