Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7908921
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T12:09:15+00:00 2026-06-03T12:09:15+00:00

Howdie, I’m trying writing a system that makes predictions about its users based on

  • 0

Howdie,

I’m trying writing a system that makes predictions about its users based on a test. For part of this I only want the database to store the most recent 500 values.

The current fields I am storing are

ID (Auto increment)
USERID (the users unique ID)
SCORE(an integer)

In an ideal world I would Like the system to drop the oldest row when a unique user gets over 500 records in the database. Is there an easy way to automate this in PHP without making the code really heavy?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T12:09:22+00:00Added an answer on June 3, 2026 at 12:09 pm

    You’ll have to store a date/time field so you can determine what’s over 1 month old, then it becomes as simple as:

    DELETE FROM yourtable
    WHERE timestampfield > (NOW() - INTERVAL 1 MONTH)
    

    If you’re not going to have any ‘gaps’ in the auto_incremented ID, you could do a very simple (and very failure prone):

    INSERT INTO ....  <--add new record
    
    DELETE FROM yourtable WHERE (id < (INSERT_ID() - 500))
    

    but this would be very unreliable.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is actually a problem that I've already solved, but I suspect that there
I'm trying to find a solution to what I think has to be a
Howdie stackoverflow people! So I've been doing some digging regarding these NoSQL databases, MongoDB,
I'm new at using CoreData and I'm trying to understand how to perform a
Howdie all, I've installed Eclipse CDT and MinGW with GCC. Added the mingw\bin to
I am trying to communicate with a command-line chat bot with Python using the
This is a very simplified version of a model I'm working on: class ClothingTop(models.Model):
I'm working on an app that relies on a set of data that can
I have a module that is responsible for handling special products in ubercart (product
I'm just learning to program and have decided to try Ruby. I'm sure this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.