SQL Server Management Studio:在视图定义中插入注释

发布于 2024-10-28 19:24:12 字数 133 浏览 1 评论 0原文

可以在 SQL Server Management Studio (2005) 的视图中插入注释吗?我谈论的是在对象资源管理器中右键单击视图并选择“修改”后看到的窗口。

我尝试在 SQL 代码中插入不同类型的注释,但这都会导致语法错误。

It is possible to insert comments in views in SQL Server Management Studio (2005)? I talk about the window that you see after you right click on a view in the object explorer and choose Modify.

I tried to insert different kind of comments in the SQL code but it all leads to syntax errors.

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

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

发布评论

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

评论(1

樱娆 2024-11-04 19:24:12

这对我有用 - 当我“脚本为 -> 创建”时,评论就会显示。

create view [dbo].[v_test] as 
/* this is my view */
select * from Items

This works for me - when I "script as -> create", the comment shows up.

create view [dbo].[v_test] as 
/* this is my view */
select * from Items
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文