oracle列别名使用

给列取一个其他名字,方便自己认识

select t.empno, t.ename from scott.emp t;

oracle列别名使用_第1张图片

select t.empno, t.ename as 名字 from scott.emp t;
列名上显示名字两个字
oracle列别名使用_第2张图片

给临时结果取名字

select t.deptno, count(*) from scott.emp t group by t.deptno;
oracle列别名使用_第3张图片

select t.deptno, count(*) as total from scott.emp t group by t.deptno;
oracle列别名使用_第4张图片

给临时结果用于嵌套查询使用

经典的分页查询

select * from (select t.*, rownum as rn from scott.emp t where rownum < 6) t where t.rn > 3

oracle列别名使用_第5张图片

你可能感兴趣的:(数据库)