With DeptTempTbl As (Select DeptNo,
Count(*) As DeptRecCnt
From Emp
Group By Deptno)
/*-------------------------------------------------------------*/
/* Use the results from the above query in the following query */
/* and subquery */
/*-------------------------------------------------------------*/
Select DeptNo,
DeptRecCnt
From DeptTempTbl
Where DeptRecCnt >= (Select Avg(DeptRecCnt)
From DeptTempTbl);
DEPTNO DEPTRECCNT
---------- ----------
30 6
20 5
"BlogSpot" Blogs Cannot Be Shared, Using "www"
-
We're seeing a number of reports from blog owners, claiming their blogs are
now subject to security alerts - and blocked when sharing.
Frequently, the repo...
6 years ago
No comments:
Post a Comment