vote up 0 vote down star

Hello all,

My Table Structure is:

artist_id category

1 Song

1 Song

1 Song

1 Video

1 Video

Now, my output must be

id category total

1 Song 3

1 Video 2

How this can done by using MYSQL.

flag

55% accept rate

1 Answer

vote up 3 vote down check

I think this should work (untested):

select artist_id, category, count(*) as total from table group by artist_id, category
link|flag
thanks bern.. it works.. – Fero Aug 24 at 6:56
glad I could help – bernhardrusch Aug 24 at 8:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.