Current location: Hot Scripts Forums » Programming Languages » PHP » Selecting most popular


Selecting most popular

Reply
  #1 (permalink)  
Old 12-07-03, 09:32 AM
perleo perleo is offline
Coding Addict
 
Join Date: Jul 2003
Location: Ireland
Posts: 269
Thanks: 0
Thanked 0 Times in 0 Posts
Selecting most popular

How do I select the most popular piece of data in an MySQL table?

How would the select statement go ??

Also, if i have times in an row in the db, how would i add alll the time in the table ?
Reply With Quote
  #2 (permalink)  
Old 12-08-03, 01:29 AM
NeverMind's Avatar
NeverMind NeverMind is offline
Community VIP
 
Join Date: Aug 2003
Location: K.S.A
Posts: 2,257
Thanks: 0
Thanked 2 Times in 1 Post
Quote:
Originally Posted by perleo
How do I select the most popular piece of data in an MySQL table?

How would the select statement go ??

Also, if i have times in an row in the db, how would i add alll the time in the table ?
what do you mean by 'most popular' ? you mean most visited/viewed ?
if so , you need to add a counter to the table structure and then UPDATE it with something like that :
Code:
UPDATE table SET counter=counter+1;
to fetch the most visited/viewed/popular :
Code:
SELECT item, whatever, counter FROM table ORDER BY counter LIMIT 1;
and last part about time is not clear ..
__________________
PHPSimplicity
We don't need a reason to help people - Zidane [FF9]

Last edited by NeverMind; 12-08-03 at 01:32 AM.
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
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

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
mySQL: selecting values that do not exist bitesize PHP 9 02-20-04 11:47 AM
Is phpBB the most popular php board and why? pelican General HotScripts Site Discussion 10 09-28-03 10:18 AM
Hehe, not very popular... kambodja Database 8 08-26-03 06:02 AM
A popular site needs reciprocal links! kailash Traffic Exchange 4 08-25-03 12:52 AM
Link Exchange with Popular eCard Site Mitnik Traffic Exchange 3 08-11-03 11:56 PM


All times are GMT -5. The time now is 06:09 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.