Based on the solution here I tried using:
CREATE EVENT delete_expired_101
ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 24 HOUR DO
DELETE FROM my_table WHERE id = 101;
on my php query, but it doesn't seem to work and gives me invalid syntax. Can you recommend me a way for this?
Take note I am using MS SQL not MySQL.