zoukankan      html  css  js  c++  java
  • Oracle分析函数ntile

        有这么一个需求。将课程的成绩分成四个等级,为学生打A、B、C、D的绩效。

    drop table course purge;
    create table course
    (
      id number,
      grade number
    );
    insert into course values(1,50);
    insert into course values(2,55);
    insert into course values(3,60);
    insert into course values(4,65);
    insert into course values(5,70);
    insert into course values(6,75);
    insert into course values(7,80);
    insert into course values(8,85);
    insert into course values(9,90);
    insert into course values(10,95);
    commit;


    SQL> select id,grade,ntile(4) over(order by grade desc) til from course;
            ID      GRADE        TIL
    ---------- ---------- ----------
            10         95          1
             9         90          1
             8         85          1
             7         80          2
             6         75          2
             5         70          2
             4         65          3
             3         60          3
             2         55          4
             1         50          4
    已选择10行。

  • 相关阅读:
    二级联动
    ajax的post请求方式
    ajax基本常识及get请求方式
    google-gson库下的gson的基本使用
    org.json库下的json的基本使用
    初步认识session
    JSTL的基本使用
    EL的基本使用
    jsp编译器指令errorPage的用法
    poj 1742(好题,楼天城男人八题,混合背包)
  • 原文地址:https://www.cnblogs.com/wzzkaifa/p/7019007.html
Copyright © 2011-2022 走看看