About 18,100,000 results
Open links in new tab
  1. How can I tell when a MySQL table was last updated?

    In later versions of MySQL you can use the information_schema database to tell you when another table was updated: AND TABLE_NAME = 'tabname' This does of course mean …

  2. mysql - Practical way of finding last update/insert/delete of any …

    Apr 14, 2022 · I want to implement a way of having a "last modified" timestamp for a database, i.e. which shows when the last INSERT or DELETE or UPDATE occurred, regardless of the …

  3. MySQL, is there a way to tell when was database last …

    You can run a MySQL query against the information_schema table: Example (replace dbname with your database name): SELECT UNIX_TIMESTAMP(MAX(UPDATE_TIME)) as …

  4. How to Get Latest Updated Records in SQL? - GeeksforGeeks

    Jan 3, 2025 · Retrieving the latest updated records is a critical operation for data analysis, debugging, or monitoring changes in a database. In this article, we will explain various SQL …

  5. Check When a MySQL Table Was Last Updated - Online …

    Syntax to know the last updated time. Let us implement the following query to get the last updated time. Â Â -> FROM Â Â information_schema.tables. Â Â -> WHERE Â TABLE_SCHEMA = …

  6. Find recently modified tables in MySQL database

    select table_schema as database_name, table_name, update_time from information_schema.tables tab where update_time > (current_timestamp() - interval 30 day) …

  7. history - Tracking MySQL Database Changes - Stack Overflow

    Apr 29, 2011 · Enable MySql logging. Check for updates in the logs. Enable logging in MySQL: Type the following in mysql backend console. SET GLOBAL log_output = 'TABLE'; SET …

  8. How to find Last Updated Table in MYSQL Database - orahow

    Mar 31, 2018 · Below are the list of queries using which you can find out recently modified tables in MYSQL. List of tables updated in last 5 Minutes: SELECT …

  9. mysql - How to check the last time a table has been modified ...

    May 10, 2021 · Using the schema, we can get UPDATE_TIME like. SELECT UPDATE_TIME FROM information_schema.tables WHERE TABLE_SCHEMA = 'db' AND TABLE_NAME = 't1' …

  10. How to Find When Table Was Last Updated in MySQL

    Sep 27, 2022 · You can easily get the last modified time of a table using the following SQL query. Replace database_name and table_name below with the names of your database and table …

  11. Some results have been removed
Refresh