视图后面是否有find sql语句
是否可以找到视图背后的实际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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
浏览次数->您的观点->脚本查看方式 ->创建
你也可以做
Views -> your view -> Script View As -> Create
you can also do
右键单击视图并设计...
Right click the view and Design...
在 SSMS 中(假设有适当的权限),您应该能够右键单击视图并选择“脚本视图为”选项。
In SSMS (assuming appropriate permissions) you should be able to right-click on the view and choose the "Script View as" option.
为什么您的视图尚未作为脚本包含在源代码管理中?除了通过脚本之外,您不应该创建视图。
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.