sqlserver的话,字符串和字段用+即可(前提是两者都是字符型数据)
如:
select 'a'+一个字符型的字段 from table_name
mysql的话,用concat函数
select concat('a',一个字符型的字段) from table_name