在查询中使用列别名(使用“+”合并和as子句):假设在数据库的雇员表employee中有firstName和lastName列,现需将这两列合并成一个叫做姓名的列作为查询结果,请写出SQL语句。
select firstName+lastName as '姓名' from employee