mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 22:26:01 +00:00
8 lines
195 B
JavaScript
8 lines
195 B
JavaScript
module.exports = `
|
|
select
|
|
TABLE_NAME as pureName,
|
|
VIEW_DEFINITION as createSql
|
|
from information_schema.views
|
|
where TABLE_SCHEMA = '#DATABASE#' and TABLE_NAME =[OBJECT_NAME_CONDITION];
|
|
`;
|