sql查找数据库中某个字段在数据库的哪个表中,能否有指令查询?比如我想查询数据库包含“box”的所有表名

日期:2016-08-30 10:50:48 人气:1

sql查找数据库中某个字段在数据库的哪个表中,能否有指令查询?比如我想查询数据库包含“box”的所有表名

--Oracleselect table_name from user_tab_cols where column_name='BOX';--Sql Serverselect name from sysobjects where id in (select id from syscolumns where name='BOX');
    A+
热门评论