如何从 SQL Server 中的现有表获取 FK 脚本?

发布于 2024-12-10 14:49:46 字数 199 浏览 0 评论 0原文

假设我有许多创建了外键的表。

我只想获取这些 FK 的脚本,如下所示:

ALTER TABLE dbo.MyTable ADD CONSTRAINT...

我尝试使用 Studio 管理中的工具,但是,它返回脚本并一起创建表。我只想返回 FK 脚本。

如何从 SQL 表中仅返回 FK 脚本?

Suppose I have many tables which have Foreign keys created.

I want to get only the scripts for those FKs like so:

ALTER TABLE dbo.MyTable ADD CONSTRAINT...

I've tried to use tools from Studio management, however, it returns the script and create table together. I only want to return the FK scripts.

How can I return only the FK scripts from an SQL table?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

洒一地阳光 2024-12-17 14:49:46

如果您使用的是 Management Studio,请展开要为其编写脚本的表的Keys 树,右键单击外键并选择将键脚本编写为... CREATE从菜单中。

If you're using Management Studio, expand the Keys tree of the table you want to script for, right-click the Foreign Key and choose Script key as... CREATE from the menu.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文