dbgate/packages/engines/mssql/tables.sql

7 lines
219 B
MySQL
Raw Normal View History

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]