摘要:
final 最终的。 final方法:在方法上加上final的时候,表示子类不能进行重写。 final变元: 方法的变元是方法声明中出现在两个圆括号之间的变量声明。 public Record getRecord(int fileNumber,int recNumber){} 方法的变元实质上与局部 阅读全文
摘要:
语法:函数(参数) over(partition by 要排序的字段 order by 排序的字段) select e.empno,e.ename,e.job,e.mgr,e.sal, e.deptno, row_number() over(PARTITION BY e.deptno ORDER B 阅读全文