从 SQL Server 中的临时表创建临时视图
我有一个临时表,我想在这个临时表上创建一个临时视图。
是否可以?
在下面的示例中,我希望 #Top10Records
成为视图而不是表格,以便我得到
select * into #Top10Records from (select top 10 * from #MytempTable)
I have a temporary table and I would like to create a temporary view over this temporary table.
Is it possible?
In following example I would like #Top10Records
to be a view instead of a table so that I get
select * into #Top10Records from (select top 10 * from #MytempTable)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用公共表表达式来执行此操作:
You can use a Common Table expression to do that:
不幸的是,SQL Server 不支持这一点:
Unfortunately, SQL Server doesn't support this: