Home >Database >Mysql Tutorial >How Can OUTER and CROSS APPLY Enhance SQL Queries in Real-World Applications?
Practical Applications of OUTER and CROSS APPLY in SQL Queries
OUTER and CROSS APPLY significantly improve SQL query efficiency and readability in diverse real-world applications. Here are some illustrative examples:
1. Top N Records per Category:
Using APPLY offers performance advantages over nested queries when extracting the top N rows for each group. Consider this example:
<code class="language-sql">SELECT pr.name, pa.name FROM sys.procedures pr OUTER APPLY (SELECT TOP 2 * FROM sys.parameters pa WHERE pa.object_id = pr.object_id ORDER BY pr.name) pa ORDER BY pr.name, pa.name;</code>
2. Utilizing Table-Valued Functions:
CROSS APPLY simplifies the application of table-valued functions to individual rows of the outer query:
<code class="language-sql">SELECT * FROM sys.dm_exec_query_stats AS qs CROSS APPLY sys.dm_exec_query_plan(qs.plan_handle);</code>
3. Efficient Alias Reuse:
CROSS APPLY allows for the effective reuse of column aliases within a single query:
<code class="language-sql">SELECT number, doubled_number, doubled_number_plus_one FROM master..spt_values CROSS APPLY (SELECT 2 * CAST(number AS BIGINT)) CA1(doubled_number) CROSS APPLY (SELECT doubled_number + 1) CA2(doubled_number_plus_one);</code>
4. Streamlining Column Unpivoting:
APPLY provides an elegant solution for unpivoting multiple column groups from tables with a non-normalized structure:
<code class="language-sql">SELECT Id, Foo, Bar, GrpName FROM T CROSS APPLY (VALUES('1', Foo1, Bar1), ('2', Foo2, Bar2), ('3', Foo3, Bar3)) V(GrpName, Foo, Bar);</code>
The above is the detailed content of How Can OUTER and CROSS APPLY Enhance SQL Queries in Real-World Applications?. For more information, please follow other related articles on the PHP Chinese website!