Tagged Questions
5
votes
9answers
324 views
What is the best method/options for expiring records within a database?
In a lot of databases I seem to be working on these days I can't just delete a record for any number of reasons, including so later on they can be displayed later (say a product that no longer exists) ...
1
vote
2answers
341 views
Grab all items from MYSQL Table expired 1 day ago
MYSQL Table trial_list structure as follows...
id | product_id | expiry_date(date) | by_user | curr_datentime(timestamp)
we are able to extend any trial, and if we do that it simply another row ...
1
vote
2answers
84 views
Move Expired Items?
I have a model Post which has a expiry_date. I want to know what is the
best way to manage scalability in this case. 2 options:
Whenever I want to SELECT from the table, I need to include where
...