JOAOSANTACRUZ.COM

Get the latest updates to mysql tables

How to Get the latest updates to mysql tables


						

SELECT table_schema,table_name,update_time
FROM information_schema.tables
WHERE table_schema='YOUR_TABLE_NAME' ORDER BY update_time DESC LIMIT 20

Go Back