Jump to content

SQL Help


princeads

Recommended Posts

Hiya,

 

Just got a problem with my sql statement that links my PHP to MYSQL database. My sql statement is below but I'm unsure how to change the statement to only retrieve the top 5 news results based upon this calculation: Number of hits (cmsnews.hits) divided by the number of days since created date (cmsnews.date). 

 

$sql  = "SELECT cmsnews.newsID, cmsnews.title, cmsnews.article, cmsnews.status, cmsnews.date, cmsnews.hits,  cmscontentstatus.statusID

        FROM cmsnews, cmscontentstatus

        WHERE cmsnews.status = cmscontentstatus.statusID AND cmscontentstatus.status = 'Published'

        ORDER BY cmsnews.hits DESC

        LIMIT 0, 5 ";

 

Any help would be great, cheers

AB

Link to comment
https://forums.phpfreaks.com/topic/95278-sql-help/
Share on other sites

$sql  = "SELECT cmsnews.newsID, cmsnews.title, cmsnews.article, cmsnews.status, cmsnews.date, cmsnews.hits,    cmscontentstatus.statusID,(cmsnews.hits /DATEDIFF('end','startdate')) as odr
         FROM cmsnews, cmscontentstatus
         WHERE cmsnews.status = cmscontentstatus.statusID AND cmscontentstatus.status = 'Published'
         ORDER BY odr DESC
         LIMIT 0, 5 ";

 

maybe this?

Link to comment
https://forums.phpfreaks.com/topic/95278-sql-help/#findComment-488168
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.