I can get event in mysql by
SHOW EVENTS LIKE 'e29'
but it is giving all information. it is like
select * from ....
My need is that i want to get the STATUS of a particular event
I can get event in mysql by
SHOW EVENTS LIKE 'e29'
but it is giving all information. it is like
select * from ....
My need is that i want to get the STATUS of a particular event
Copyright © 2021 Jogjafile Inc.
 
                        
Show eventsis not a regular statement that returns acursorto read on.You have to query
information_schema.eventsto knowstatusof anevent.