1、查询表或视图中所有列的数据select * from emp;
3、使用算数表达式对查询目标进行计算。select empno,sal*0.8 from emp;
5、消除重复行select distinct deptno from emp;