查询常量值
查询常量值:
select 100;
select 'join';
查询表达式
查询表达式:
select 100*98;
查询函数
查询函数:
select version();
起别名
起别名:(便于理解)(方式一:使用as)
select 100*98 as 结果;
select last_name as 姓, first_name as 名 from 表名字;
起别名:(方式二:空格)
select last_name 姓, first_name 名 from 表名字;
select 100*98 结果;
案例
查询salary ,显示结果为out put
select salary as "out put" from 表名;
显示结果加上””,避免出现与关键词同名