mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-30 08:03:58 +00:00
11 lines
400 B
JavaScript
11 lines
400 B
JavaScript
module.exports = `
|
|
select
|
|
tables.name as "pureName",
|
|
tables.uuid as "objectId",
|
|
views.view_definition as "viewDefinition",
|
|
tables.metadata_modification_time as "contentHash"
|
|
from information_schema.views
|
|
inner join system.tables on views.table_name = tables.name and views.table_schema = tables.database
|
|
where views.table_schema='#DATABASE#' and tables.uuid =OBJECT_ID_CONDITION
|
|
`;
|