摘要:
获取完整表结构: 其中,where语句table_name字段的值替换为你的表名,table_schema字段的值替换为你的数据库名。 select * from information_schema.`COLUMNS` where table_name='records' and table_sc 阅读全文
摘要:
Sql语句: select t.name 表名,tr.name 触发器名称 from (select * from sysobjects where xtype='U') t inner join (select * from sysobjects where xtype='TR') tr on t 阅读全文