Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Need understanding of "INTERVAL" in MySQL statement

Please see MySQL statement used to delete records older than one minute. Can you please explain the usage of INTERVAL in the given statement?

DELETE FROM `token_tbl` WHERE `dateCreate` < (Now() - INTERVAL 1 MINUTE)

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

interval denotes a period of time. I.e., Now() - INTERVAL 1 MINUTE means "one minute before the current time". Then the condition would be any records that have dateCreate that are older than a minute ago.

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading