Jump to content

[SOLVED] Query Problem


Fadion

Recommended Posts

I am working on a lyrics website and im making a query to show the top 20 artists based on the sum of views on their songs. I have this query which is working on local, but online im having problems. It is a shared host with php 4.3.11 and mysql 5. The error is "invalid use of group function". Im not very good with queries, other then simple selects, updates etc. If anyone can give any advice to make this query work. Thank you.

 

SELECT artist, SUM(views) FROM texts GROUP BY artist ORDER BY SUM(views) DESC LIMIT 20

Link to comment
https://forums.phpfreaks.com/topic/70967-solved-query-problem/
Share on other sites

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.