mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-28 08:26:29 +00:00
7 lines
184 B
JavaScript
7 lines
184 B
JavaScript
module.exports = `
|
|
select constraint_name as "constraintName"
|
|
from all_constraints
|
|
where owner='$owner' and constraint_type = 'U'
|
|
and 'tables:' || table_name =OBJECT_ID_CONDITION
|
|
`;
|