/* 别名 as 场景:字段重名使用别名 */ #方式一 SELECT 100%5 as 结果; #方式二 SELECT 100%5 结果; #案例: SELECT employees.salary as 'out put' from employees;