标签: sql-server-2012
我发现系统中存在表名,我使用以下查询;
select * from sys.tables where name = '%openpotab%';
但是如何使用表名找到数据库名?
先谢谢了, 巴韦什
答案 0 :(得分:1)
您可以使用:
select DB_NAME(DB_ID()), * from sys.tables where name LIKE '%openpotab%';