mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 00:46:01 +00:00
14 lines
473 B
JavaScript
14 lines
473 B
JavaScript
module.exports = `
|
|
select
|
|
columns.table as "pureName",
|
|
tables.uuid as "objectId",
|
|
columns.name as "columnName",
|
|
columns.type as "dataType",
|
|
columns.comment as "columnComment",
|
|
columns.default_expression as "defaultValue"
|
|
from system.columns
|
|
inner join system.tables on columns.table = tables.name and columns.database = tables.database
|
|
where columns.database='#DATABASE#' and tables.uuid =OBJECT_ID_CONDITION
|
|
order by toInt32(columns.position)
|
|
`;
|