mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 09:05:59 +00:00
11 lines
217 B
JavaScript
11 lines
217 B
JavaScript
module.exports = `
|
|
select avv.*
|
|
from (select
|
|
view_name as "pure_name",
|
|
text as "create_sql"
|
|
from all_views av
|
|
where owner = '$owner' and text is not null
|
|
) avv
|
|
where 'views:' || "pure_name" is not null
|
|
`;
|