mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 01:26:01 +00:00
11 lines
243 B
JavaScript
11 lines
243 B
JavaScript
module.exports = `
|
|
select
|
|
basecol.constraint_name,
|
|
basecol.constraint_schema,
|
|
basecol.column_name as "column_name",
|
|
basecol.table_schema,
|
|
basecol.table_name,
|
|
basecol.ordinal_position
|
|
from information_schema.key_column_usage basecol
|
|
`;
|