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.
我有一个无法修改的存储过程,但我需要添加一个 where 子句来进一步过滤它。在不将数据从存储过程插入到临时表然后在该临时表上执行位置的情况下,最好的方法是什么。还有其他方法吗?
存储过程是可执行的,但过滤发生在 select 语句中,因此您应该将结果放入表中以选择它。除了临时表之外别无他法。表值 Udf 也有类似临时表的表。