dbgate/packages/engines/mssql/sql/tables.js

9 lines
241 B
JavaScript
Raw Normal View History

2020-03-14 09:38:10 +00:00
module.exports = `
select
2020-02-02 10:31:41 +00:00
o.name as pureName, s.name as schemaName, o.object_id as objectId,
2020-01-19 20:01:48 +00:00
o.create_date, o.modify_date
from sys.tables o
inner join sys.schemas s on o.schema_id = s.schema_id
where o.object_id =[OBJECT_ID_CONDITION]
2020-03-14 09:38:10 +00:00
`;