Advertisement
mugs

list org manager org counts

Oct 16th, 2015
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PL/SQL 0.13 KB | None | 0 0
  1. SELECT
  2. org.ORG_MGR_UNVL_ID,
  3. COUNT(org.ORG_MGR_UNVL_ID) kount
  4. FROM
  5. ca_org_t org
  6. GROUP BY
  7. org.ORG_MGR_UNVL_ID
  8. ORDER BY
  9. kount DESC;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement