Jump to content

Query to display highest total rows from column


sford999

Recommended Posts

Hi,

 

I have a database schema such as:

 

ID, gallery_id, Images

 

What I would like to do is count each matching row from the "gallery_id" column and display the most popular result.

 

eg: if the gallery_id rows are (2,5,6,2,7,9,2,5,7,2,2), then 2 would be the most popular and that is the one I want to display.

 

Am I right in thinking along the lines of:

SELECT *, COUNT(images) FROM table GROUP BY (gallery_id)

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.