从 SQL Server 2008 视图中选择数据并将其插入到时态表中
我在 SQL 中有一个视图,我想根据某些条件选择一些数据,那么是否可以执行
SELECT * INTO #TABLE_S FROM VIEW_TABLE
或如何将 VIEW 数据插入到 SQL Server 2008 中的临时表中?
I have a view in SQL, and I want to select some data depending on certain conditions , so is it possible to do
SELECT * INTO #TABLE_S FROM VIEW_TABLE
Or How do I insert VIEW data into a temporal table in SQL Server 2008?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将按所写的那样工作。我是否错过了问题的重点?
请注意,如果
#TABLE_S
已存在,则应使用INSERT INTO #TABLE_S SELECT * FROM VIEW_TABLE
。This'll work as is written. Am I missing the point of the question?
Note that if
#TABLE_S
already exists then you should instead useINSERT INTO #TABLE_S SELECT * FROM VIEW_TABLE
.