如何在SQL Server中创建视图?

发布于 2024-11-01 16:22:14 字数 47 浏览 0 评论 0原文

我有更多的表,我想合并一些表以获得结果......

我该怎么办?

I have more tables and I want to merge that some table for getting result.....

How can I do?

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

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

发布评论

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

评论(2

请止步禁区 2024-11-08 16:22:14

Views 只是某种“存储的查询”。它可以定义为:

CREATE VIEW viewname AS SELECT <the rest of select query here>

更多详细信息请参见 msdn:

Views is just some sort of "stored query". It can be defined as:

CREATE VIEW viewname AS SELECT <the rest of select query here>

More details at msdn:

撩心不撩汉 2024-11-08 16:22:14

查看视图。

语法的其余部分位于......文档中。

而且这个问题既与C#也与C++无关。它也不关心你早餐吃什么。 SQL 使用服务器解释的字符串,而无论服务器如何解释,语言都有。

CEATE VIEW.

The rest of teh syntax is in ..... the documentation.

And this question is neither related to C# nor C++. It also does not care what you ate for breakfast. SQL works with strings the server interprets, and the langauge has no matter how the server does that.

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