在 SQL Server 2008 中,我有一个包含 CTE 的存储过程
;with t1 as (select * from db..tablename where …)
Select * from t1;
我想tablename
用作存储过程参数之一。
请注意结果的大小T1
太大而无法使用类似的东西
Exec(‘select * into #temptable from db..’+’tablename’+’ where …’)
有类似的问题和答案,但似乎都没有帮助。
谢谢