If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Returning Top N elements

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-19-09, 09:16
vapor vapor is offline
Registered User
 
Join Date: May 2009
Posts: 10
Returning Top N elements

Hi,

I have a db that stores searches. I want to return top N searches.
Currently it stores like...

Keyword
--------
A
A
C
B
C
A

I want to return it like...

Top
----
A
C
B

Can you please help me with the query?
Thanks.
Reply With Quote
  #2 (permalink)  
Old 05-19-09, 09:24
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,534
Code:
SELECT keyword AS Top
  FROM daTable
GROUP
    BY keyword
ORDER
    BY COUNT(*) DESC LIMIT N
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote
  #3 (permalink)  
Old 05-19-09, 09:26
vapor vapor is offline
Registered User
 
Join Date: May 2009
Posts: 10
Yummy!
Thanks.
Reply With Quote
  #4 (permalink)  
Old 05-20-09, 04:06
vapor vapor is offline
Registered User
 
Join Date: May 2009
Posts: 10
A little change...

Instead of storing each keyword, I am going to check if keyword is already in table, if yes then increase it's "repeat" column by 1 or else add it to db with "repeat" as 1.

Is it possible with MySQL or do I have to do it in lang?
Reply With Quote
  #5 (permalink)  
Old 05-20-09, 07:11
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,534
yes, it's possible

use INSERT... ON DUPLICATE KEY UPDATE ...

__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On