Is there a way to query a mysql table using pandas only when there is an UPDATE or INSERT operation on the corresponding table? I couldn't find a relevant argument in pandas read_sql. I need to query a table frequently so want to avoid pulling the data if there was no update/insert.
Thanks.