视图后面是否有find sql语句

发布于 2024-11-23 18:21:14 字数 81 浏览 3 评论 0原文

是否可以找到视图背后的实际sql语句。我在 sql Management Studio 中,右键单击视图,但没有看到显示视图后面的 sql 的选项。

Is there a find the actual sql statement behind a view. I am in sql management studio, i right clicked on the view and i dont see an option to reveal the sql behine the view.

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

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

发布评论

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

评论(4

回梦 2024-11-30 18:21:14

浏览次数->您的观点->脚本查看方式 ->创建

你也可以做

SELECT OBJECT_DEFINITION (OBJECT_ID(N'your view')); 

Views -> your view -> Script View As -> Create

you can also do

SELECT OBJECT_DEFINITION (OBJECT_ID(N'your view')); 
这个俗人 2024-11-30 18:21:14

右键单击视图并设计...

Right click the view and Design...

烟火散人牵绊 2024-11-30 18:21:14

在 SSMS 中(假设有适当的权限),您应该能够右键单击视图并选择“脚本视图为”选项。

In SSMS (assuming appropriate permissions) you should be able to right-click on the view and choose the "Script View as" option.

五里雾 2024-11-30 18:21:14

为什么您的视图尚未作为脚本包含在源代码管理中?除了通过脚本之外,您不应该创建视图。

And why would you have views that are not in source control as a script already? You should not be creating views except through scripts.

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