How to delete mysql row after time passes?

后端 未结 6 693
闹比i
闹比i 2020-11-29 01:56

I have no idea where to start with this one:

I have a database that stores postID and Date.

What I want to do is have my website au

相关标签:
6条回答
  • 2020-11-29 02:05

    For those out there who are on a shared hosting, like 1and1's, and can't use cron, here are 2 alternatives :

    • mysql events enable you to place a time trigger on mysql, which will execute when you'll want, without having to be fired by any kind of user input

    • if you cannot create mysql events because you're on 1and1 :(, an alternative is to use webcron

    You just need to tell webcron the url of the php script you'd like to be run, and they'll trigger it for you at the intervals you want

    0 讨论(0)
  • 2020-11-29 02:15

    Why using cronjobs everyday?? Why not filter data on output. For example in your select check if post date equals today with adding a simple where:

    SELECT * FROM `posts`
    WHERE (DATE(`post_date`) = DATE(NOW()));
    

    This way you're not required to do your database managements/cronjobs on any special time and it will be used just for database managements. Afterwards you can delete unnecessary data at any time using by mysql command like:

    DELETE FROM `posts` WHERE (
        DATE(`post_date`) < DATE(NOW())
    )
    
    0 讨论(0)
  • 2020-11-29 02:19

    You can use PHP script and use cron job on your cpanel.

    Example:

    cronjobcommand.php

    <?php 
     include 'your_db_connection';
     mysql_query("DELETE FROM your_table_name WHERE Date < NOW()");
    ?>
    

    I have attached a screenshot below for your more reference.

    enter image description here

    0 讨论(0)
  • 2020-11-29 02:19

    MySQL doesn't have a task scheduler. So you have to use the task scheduler of your Operating System (CRON under Linux), or to lunch a basic task checker sub-script during the script of the main page (on another page that is supposed to display the changing data).

    0 讨论(0)
  • 2020-11-29 02:21

    You should set cron job (scheduled tack.) for it.

    A cron job is an automated program setup for Linux and Unix operating systems. It allows the user to execute several commands or functions at a specific time and date.

    you have cron Job in your cpanel setup. first you need to make a php script with your logic for delete record after each date. take date from server and write script for delete.

    then go to cron tab in your cpanel and do settings for time interval to run cron and give path of your php script file.

    0 讨论(0)
  • 2020-11-29 02:28

    Most hosts provide a cron(8) service that can execute commands at specific times. You use the crontab(1) program to manage the crontab(5) file the describes when to run which commands.

    There's a lot of functionality available to you, but if you write a program (shell script, php script, C program, whatever) that runs the appropriate MySQL commands, you can call the program via cron(8) in an entirely hands-off fashion.

    Run crontab -e to edit your current crontab(5) file. If none exists, hopefully you'll get one with a helpful header. If not, copy this:

    # m h  dom mon dow   command
    

    The columns indicate the minute, hour, day of month, month, and day of week to execute commands. All the numbers in the columns are essentially ANDed together to decide when to run commands.

    Thus, midnight every night would look like this:

    0 0 * * * /path/to/executable
    

    It's remarkably flexible, so put some time into the documentation, and you'll find many uses for it.

    0 讨论(0)
提交回复
热议问题