ms sql - 在数据库中查找关系表
有没有办法通过 SQL Express 2005 中的查询或 GUI 查找数据库中表之间的关系?
除了手动在表中查找匹配的主/外键之外,还有其他更简单的方法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法通过 SQL Express 2005 中的查询或 GUI 查找数据库中表之间的关系?
除了手动在表中查找匹配的主/外键之外,还有其他更简单的方法吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
我相信您正在寻找的脚本来自以下链接:
这是脚本:
请注意,您可以在底部添加一些可选语句来限制或排序结果。输出将列出包含外键的表、字段名称、主键表及其引用的字段以及已给出的约束名称。
I believe the script you are looking for comes from the following link:
http://blog.sqlauthority.com/2006/11/01/sql-server-query-to-display-foreign-key-relationships-and-name-of-the-constraint-for-each-table-in-database/
Here is the script:
Notice that you can add some optional statements at the bottom to limit or order your results. The output will list the table that contains the foreign key, the name of the field, the primary key table and field that it refers to and the name the constraint has been given.
我只是将定义导入 Visio。也许它有帮助...
http://office.microsoft.com/en-us/visio-help/reverse-engineer-an-existing-database-into-a-database-model-HA010115485.aspx
I just import the definitions to Visio. Maybe it helps ...
http://office.microsoft.com/en-us/visio-help/reverse-engineer-an-existing-database-into-a-database-model-HA010115485.aspx
在 SSMS 中右键单击表格并选择设计。
有一个按钮看起来像 2 或 3 个窗口,它们之间有一条线,这显示了该表的关系。
这将打开外键窗口,该窗口将显示该表与其相关的每个其他表之间的每个关系,它还将显示哪些字段连接这些表。
In SSMS right click on a table and select design.
There is a button that looks like 2 or 3 windows with a line between them, this shows the relationships for that table.
This will open up the ForeignKey window which will show each relationship between that table and every other table it relates to, it will also show what fields connect those tables.