SQL Server 视图定义
如何查看用于创建视图的 SQL 脚本?我正在使用 MS SQL Server Management Studio Express 2008。
How can I see the SQL script that was used to create view? I'm using MS SQL Server Management Studio Express 2008.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在对象资源管理器(左侧窗格)中:
- 右键单击视图
- 脚本视图为 ->
- 创建至 ->
- 新的查询编辑器窗口
这将打开一个新的查询窗口,其中包含视图的创建脚本。
In object explorer (left hand pane):
- Right click the view
- Script View As ->
- CREATE TO ->
- New Query Editor Window
That will open a new query window with the create script for the view.
右键单击查看->修改
编辑:更好了
右键单击视图 - >脚本查看方式 ->创建到
您可以将创建脚本导出到您选择的目的地
Right click on the View -> Modify
EDIT: Much better
Right click on the View -> Script View As -> Create TO
There you can export the create script to a destination of your choice