- 论坛徽章:
- 0
|
我用hr模式下的表作了一下测试:
sql语句如下:
- col deptname for a20
- set linesize 200
- set pagesize 200
- break on deptid on deptname on employees on avg_sal skip 1
- select deptid, deptname,employees, avg_sal, employee_id, first_name,salary from
- (select dept.department_id deptid, dept.department_name deptname, count(employee_id) employees, avg(salary) avg_sal
- from hr.employees emp, hr.departments dept
- where emp.department_id = dept.department_id
- group by dept.department_id, dept.department_name) taba, hr.employees tabb
- where taba.deptid = tabb.department_id order by deptid,deptname,employees,avg_sal,employee_id;
复制代码
测试结果如下
- SQL*Plus: Release 9.2.0.6.0 - Production on Fri Apr 6 10:18:30 2007
- Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
- Enter user-name: / as sysdba
- Connected to:
- Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
- With the Partitioning, OLAP and Oracle Data Mining options
- JServer Release 9.2.0.6.0 - Production
- SQL> col deptname for a20
- set linesize 200
- set pagesize 200
- break on deptid on deptname on employees on avg_sal skip 1
- select deptid, deptname,employees, avg_sal, employee_id, first_name,salary from
- (select dept.department_id deptid, dept.department_name deptname, count(employee_id) employees, avg(salary) avg_sal
- from hr.employees emp, hr.departments dept
- where emp.department_id = dept.department_id
- group by dept.department_id, dept.department_name) taba, hr.employees tabb
- where taba.deptid = tabb.department_id order by deptid,deptname,employees,avg_sal,employee_id;SQL> SQL> SQL> SQL> 2 3 4 5 6
- DEPTID DEPTNAME EMPLOYEES AVG_SAL EMPLOYEE_ID FIRST_NAME SALARY
- ---------- -------------------- ---------- ---------- ----------- ---------------------------------------- ----------
- 10 Administration 1 4400 200 Jennifer 4400
- 20 Marketing 2 9500 201 Michael 13000
- 202 Pat 6000
- 30 Purchasing 6 4150 114 Den 11000
- 115 Alexander 3100
- 116 Shelli 2900
- 117 Sigal 2800
- 118 Guy 2600
- 119 Karen 2500
- 40 Human Resources 1 6500 203 Susan 6500
- 50 Shipping 45 3475.55556 120 Matthew 8000
- 121 Adam 8200
- 122 Payam 7900
- 123 Shanta 6500
- 124 Kevin 5800
- 125 Julia 3200
- 126 Irene 2700
- 127 James 2400
- 128 Steven 2200
- 129 Laura 3300
- 130 Mozhe 2800
- 131 James 2500
- 132 TJ 2100
- 133 Jason 3300
- 134 Michael 2900
- 135 Ki 2400
- 136 Hazel 2200
- 137 Renske 3600
- 138 Stephen 3200
- 139 John 2700
- 140 Joshua 2500
- 141 Trenna 3500
- 142 Curtis 3100
- 143 Randall 2600
- 144 Peter 2500
- 180 Winston 3200
- 181 Jean 3100
- 182 Martha 2500
- 183 Girard 2800
- 184 Nandita 4200
- 185 Alexis 4100
- 186 Julia 3400
- 187 Anthony 3000
- 188 Kelly 3800
- 189 Jennifer 3600
- 190 Timothy 2900
- 191 Randall 2500
- 192 Sarah 4000
- 193 Britney 3900
- 194 Samuel 3200
- 195 Vance 2800
- 196 Alana 3100
- 197 Kevin 3000
- 198 Donald 2600
- 199 Douglas 2600
- 60 IT 5 5760 103 Alexander 9000
- 104 Bruce 6000
- 105 David 4800
- 106 Valli 4800
- 107 Diana 4200
- 70 Public Relations 1 10000 204 Hermann 10000
- 80 Sales 34 8955.88235 145 John 14000
- 146 Karen 13500
- 147 Alberto 12000
- 148 Gerald 11000
- 149 Eleni 10500
- 150 Peter 10000
- 151 David 9500
- 152 Peter 9000
- 153 Christopher 8000
- 154 Nanette 7500
- 155 Oliver 7000
- 156 Janette 10000
- 157 Patrick 9500
- 158 Allan 9000
- 159 Lindsey 8000
- 160 Louise 7500
- 161 Sarath 7000
- 162 Clara 10500
- 163 Danielle 9500
- 164 Mattea 7200
- 165 David 6800
- 166 Sundar 6400
- 167 Amit 6200
- 168 Lisa 11500
- 169 Harrison 10000
- 170 Tayler 9600
- 171 William 7400
- 172 Elizabeth 7300
- 173 Sundita 6100
- 174 Ellen 11000
- 175 Alyssa 8800
- 176 Jonathon 8600
- 177 Jack 8400
- 179 Charles 6200
- 90 Executive 3 19333.3333 100 Steven 24000
- 101 Neena 17000
- 102 Lex 17000
- 100 Finance 6 8600 108 Nancy 12000
- 109 Daniel 9000
- 110 John 8200
- 111 Ismael 7700
- 112 Jose Manuel 7800
- 113 Luis 6900
- 110 Accounting 2 10150 205 Shelley 12000
- 206 William 8300
- 106 rows selected.
复制代码 |
|