Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个简单的 CTE x,我希望将其内容选择到视图中。您可以使用与表格相同的语法类型选择视图吗?IE
x
SELECT * INTO newTable FROM OldTable
可以像这样动态创建新视图吗?
create view myView AS with x as (select 1 as num) select * from x