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.
使用存储过程从视图中检索和过滤数据而不是从表中检索和过滤数据时是否存在性能问题?
简化:使用存储过程从视图中检索或过滤数据是否比使用存储过程从表中获取或过滤数据更快?
视图的性能取决于定义它的 select 语句的性能特征。您可以通过索引视图来提高仅选择本身的性能
简单的回答:没有。