mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 13:46:00 +00:00
8 lines
240 B
JavaScript
8 lines
240 B
JavaScript
module.exports = `
|
|
select
|
|
TABLE_NAME as pureName,
|
|
coalesce(UPDATE_TIME, CREATE_TIME) as modifyDate
|
|
from information_schema.tables
|
|
where TABLE_SCHEMA = '#DATABASE#' and TABLE_NAME =[OBJECT_NAME_CONDITION] and TABLE_TYPE = 'VIEW';
|
|
`;
|