MySQL数据库中的方法
mysql中查询一个字段具体是属于哪一个数据库的那一张表:用这条语句就能查询出来,其中 table_schema 是所在库, table_name 是所在表
–mysql中查询某一个字段名属于哪一个库中的哪一张表
select table_schema,table_name from information_schema.columns where column_name = '字段名'
Oracle数据库中的方法
即我要查询住院号在哪一个表数据中,用以下方法就能得到。
select column_name,
table_name,data_type ,data_length,data_precision,data_scale from user_tab_columns where column_name='住院号';
当然如果想跨库查询也是可以的,只需要DBLink下就可以。