sql – 查看具有表中某列的外键的所有表?

前端之家收集整理的这篇文章主要介绍了sql – 查看具有表中某列的外键的所有表?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这可能吗 ?如果是,所涉及的表格是什么,可以在哪里查看.

解决方法

尝试这样的事情
select uc.table_name 
from sys.user_cons_columns ucc
join sys.user_constraints uc 
on uc.r_constraint_name = ucc.constraint_name
where constraint_type = 'R'
and ucc.table_name = :1
and ucc.column_name = :2

哪里

:1 = referenced table
:2 = referenced column
原文链接:https://www.f2er.com/mssql/74839.html

猜你在找的MsSQL相关文章