sql get table last modified time

Solutions on MaxInterview for sql get table last modified time by the best coders in the world

showing results for - "sql get table last modified time"
Luca
04 Oct 2019
1SELECT name, [modify_date] FROM sys.tables
2