MSSQL Top count

Discussion in 'Software' started by msteinblock, Jun 14, 2005.

  1. msteinblock

    msteinblock Private E-2

    I would like to write a query that will return the most unique records. For example...I have a table that is keeping track of each time a photo is viewed. It is revolving, so there is also a script to delete views after a week. So essentially the table is two columns, PhotoID and ViewTime. What would be a good SQL query to return the photoID with the most records (views)? Or is it easier to run it in a PHP while statement?

    Thanks!

    Matthew
     
  2. Kodo

    Kodo SNATCHSQUATCH

    do you have a field that holds the count?
     
  3. msteinblock

    msteinblock Private E-2

    NO, that is what I am trying to determine. I have two fields in the table. PhotoID and the time it was viewed. A script comes thru and deletes all records older than a week. So, I would like to count the number of times each PhotoID is listed, and rank them in order from most to least.
     
  4. Kodo

    Kodo SNATCHSQUATCH

    I would add a field to the table called ViewCount and write little code that checks the current count and updates it by +1 whenever someone views it.
     
  5. msteinblock

    msteinblock Private E-2

    Unfortunatly that will not work. I am trying to do a running count....so any views over a week old is deleted. I need to keep track of each vew separatly so I can delete them after 1 week.

     
  6. Kodo

    Kodo SNATCHSQUATCH

    make another table with a foreign key of the image id (and/or other image information) and then put the viewcount in there.
     
  7. msteinblock

    msteinblock Private E-2

    I found the real answer. Thanks for the help!

    SELECT TOP 1 PhotoID FROM RecentViews GROUP BY PhotoID ORDER BY COUNT(PhotoID) DESC
     
  8. Kodo

    Kodo SNATCHSQUATCH

    odd, becuase your question has nothing to do with your solution.
     

MajorGeeks.Com Menu

Downloads All In One Tweaks \ Android \ Anti-Malware \ Anti-Virus \ Appearance \ Backup \ Browsers \ CD\DVD\Blu-Ray \ Covert Ops \ Drive Utilities \ Drivers \ Graphics \ Internet Tools \ Multimedia \ Networking \ Office Tools \ PC Games \ System Tools \ Mac/Apple/Ipad Downloads

Other News: Top Downloads \ News (Tech) \ Off Base (Other Websites News) \ Way Off Base (Offbeat Stories and Pics)

Social: Facebook \ YouTube \ Twitter \ Tumblr \ Pintrest \ RSS Feeds