如何使用表名查找数据库名?

时间:2018-07-11 14:48:21

标签: sql-server-2012

我发现系统中存在表名,我使用以下查询;

select * from sys.tables where name = '%openpotab%';

但是如何使用表名找到数据库名?

先谢谢了, 巴韦什

1 个答案:

答案 0 :(得分:1)

您可以使用:

select DB_NAME(DB_ID()), * from sys.tables where name LIKE '%openpotab%';