Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Nov 28th, 2005, 7:42 PM   #1
TCStyle
Programmer
 
Join Date: Jan 2005
Location: Albany, NY
Posts: 43
Rep Power: 0 TCStyle is on a distinguished road
Newest users, top 5.

Alright so I'm building alittle online community. I have the register, login, and file upload script already implemented and I'm trying to add a few nifty features. Anyway, on my home page I want to list the newest users that have register and the users with the highest number of photo uploads. In my table, I have a column named "id" which is auto incriminating (Everytime a new user registers it basically stores the number of that user). I also have a column named "picture_count" which stores how many pictures that user has uploaded. Unfortunitly, my mysql is shit, and I can't figure out how to search my table for the top 5 highest numbers in the "id" field", and the top 5 highest numbers in the "picture_count" field. Any help is apperciated.
TCStyle is offline   Reply With Quote
Old Nov 28th, 2005, 10:41 PM   #2
Lich
Professional Programmer
 
Lich's Avatar
 
Join Date: May 2005
Location: Detroit
Posts: 254
Rep Power: 4 Lich is on a distinguished road
Send a message via AIM to Lich Send a message via MSN to Lich
For the top highest 5 id numbers: SELECT * from table_name ORDER by id DESC LIMIT 5; or something to that extent.
For the top 5 picture count ones it would be similar: SELECT * from table_name ORDER by picture_count DESC LIMIT 5;

It might be LIMIT = 5, can't remember off the top of my head.
__________________
--John Cruz
Web Developer
www.cruzweb.net
Lich is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

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 On
HTML code is Off
Forum Jump




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 2:09 PM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC