Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

find a Value that exists the most

WestDraytonDec 14 2010 — edited Dec 17 2010
Let's say i have a column with various Values, now i want to find a Value that exists the most, how is the better way to make such query?
Is the best solution to do this way:
WITH t AS
 (SELECT 'a' AS VALUE  FROM Dual  UNION ALL
  SELECT 'b'  FROM Dual  UNION ALL
  SELECT 'a' FROM Dual)
SELECT VALUE
FROM (SELECT t.Value, COUNT(*) AS Cnt
           FROM t
           GROUP BY t.Value
           ORDER BY Cnt DESC
          )
WHERE Rownum = 1
As you see that Value 'a' exists the most times in table T, so the query must output the 'a' and nothing more. If the number of occurrences of the 'a' and 'b' would be same, then query should output one of them, doesn't matter which one.
As you see query now doesn't seem to be well optimized, i think.
(Oracle 10g)
This post has been answered by MichaelS on Dec 14 2010
Jump to Answer

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jan 14 2011
Added on Dec 14 2010
19 comments
8,492 views