LoginSignup
1
0

More than 5 years have passed since last update.

MySQLのinformation_schemaから、直近更新されたデータがどのテーブルかを調べる

Posted at

WEBアプリケーションの調査をする上で、データの登録・更新を行った際にどのテーブルが変更されたのか、知りたい場合がある。
ソースを読んだりログを見たりといくつかやり方はあるが、更新されたテーブルがどれかを調べる場合は、以下のクエリで抽出できる。

SELECT * FROM information_schema.TABLES
where TABLE_SCHEMA in ('DB名')
order by UPDATE_TIME desc ;
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0