2012-01-12 5 views

답변

0

테이블의 마지막 업데이트 날짜를 가져 오는 것이 가능합니다.

select update_time from information_schema.TABLES where table_schema='<database>' and table_name='<table>'; 

특정 시간 간격으로 업데이트 된 시간을 가져 와서 마지막으로 업데이트 된 시간으로 확인할 수 있습니다.

관련 문제