up vote 90 down vote favorite
41
share [g+] share [fb]

What is the main purpose of using CROSS APPLY?

I have read (vaguely, through posts on the Internet) that cross apply can be more efficient when selecting over large data sets if you are partitioning. (Paging comes to mind)

I also know that CROSS APPLY doesn't require a UDF as the right-table.

In most INNER JOIN queries (one-to-many relationships), I could rewrite them to use CROSS APPLY, but they always give me equivalent execution plans.

Can anyone give me a good example of when CROSS APPLY makes a difference in those cases where INNER JOIN will work as well?


Edit:

Here's a trivial example, where the execution plans are exactly the same. (Show me one where they differ and where cross apply is faster/more efficient)

create table Company (
    companyId int identity(1,1)
,   companyName varchar(100)
,   zipcode varchar(10) 
,   constraint PK_Company primary key (companyId)
)
GO

create table Person (
    personId int identity(1,1)
,   personName varchar(100)
,   companyId int
,   constraint FK_Person_CompanyId foreign key (companyId) references dbo.Company(companyId)
,   constraint PK_Person primary key (personId)
)
GO

insert Company
select 'ABC Company', '19808' union
select 'XYZ Company', '08534' union
select '123 Company', '10016'


insert Person
select 'Alan', 1 union
select 'Bobby', 1 union
select 'Chris', 1 union
select 'Xavier', 2 union
select 'Yoshi', 2 union
select 'Zambrano', 2 union
select 'Player 1', 3 union
select 'Player 2', 3 union
select 'Player 3', 3 


/* using CROSS APPLY */
select *
from Person p
cross apply (
    select *
    from Company c
    where p.companyid = c.companyId
) Czip

/* the equivalent query using INNER JOIN */
select *
from Person p
inner join Company c on p.companyid = c.companyId
link|improve this question

2  
I know this is VERY picky of me, but 'performant' is not a word. 'efficient' or 'better performance' are appropriate replacements. – Brian Sep 29 '10 at 14:47
9  
Edited! Performant -> efficient. I'll just have to wait a few years until I can start a popular company called Performa, then the efficient employees will be called performant Performanians. – Jeff Meatball Yang Sep 30 '10 at 16:57
7  
I know this is EVEN PICKIER of me but 'performant' is most definitely a word. It is just not related to efficiency. – Rire1979 Dec 7 '10 at 19:07
3  
I want to pick also: Adjective performant (comparative more performant, superlative most performant) 1.(jargon, chiefly computing) Capable of or characterized by an adequate or excellent level of performance or efficiency. Ours is a performant network monitoring and systems monitoring tool. This software is ten percent more performant than its predecessor. 2. Of or relating to performance  Citation: en.wiktionary.org/wiki/performant – Mark Schultheiss Jul 7 '11 at 12:39
1  
I shall now use this word to infuriate those who think it is not a real word. Language is as language does. – Tommy Fisk Nov 3 '11 at 19:46
show 2 more comments
feedback

6 Answers

up vote 60 down vote accepted

Can anyone give me a good example of when CROSS APPLY makes a difference in those cases where INNER JOIN will work as well?

See the article article in my blog for detailed performance comparison:

CROSS APPLY works better on things that have no simple JOIN condition.

This one selects 3 last records from t2 for each record from t1:

SELECT  t1.*, t2o.*
FROM    t1
CROSS APPLY
        (
        SELECT  TOP 3 *
        FROM    t2
        WHERE   t2.t1_id = t1.id
        ORDER BY
                t2.rank DESC
        ) t2o

It cannot be easily formulated with an INNER JOIN condition.

You could probably do something like that using CTE's and window function:

WITH    t2o AS
        (
        SELECT  t2.*, ROW_NUMBER() OVER (PARTITION BY t1_id ORDER BY rank) AS rn
        FROM    t2
        )
SELECT  t1.*, t2o.*
FROM    t1
INNER JOIN
        t2o
ON      t2o.t1_id = t1.id
        AND t2o.rn <= 3

, but this is less readable and probably less efficient.

Update:

Just checked.

master is a table of about 20,000,000 records with a PRIMARY KEY on id.

This query:

WITH    q AS
        (
        SELECT  *, ROW_NUMBER() OVER (ORDER BY id) AS rn
        FROM    master
        ),
        t AS 
        (
        SELECT  1 AS id
        UNION ALL
        SELECT  2
        )
SELECT  *
FROM    t
JOIN    q
ON      q.rn <= t.id

runs for almost 30 seconds, while this one:

WITH    t AS 
        (
        SELECT  1 AS id
        UNION ALL
        SELECT  2
        )
SELECT  *
FROM    t
CROSS APPLY
        (
        SELECT  TOP (t.id) m.*
        FROM    master m
        ORDER BY
                id
        ) q

is instant.

link|improve this answer
See the end of Ariel's link. A row_number() query is just as nice and doesn't even require a join. So I don't think I should use cross apply for this situation (select top 3, partition by t1.id). – Jeff Meatball Yang Jul 16 '09 at 17:58
Good example! The raw performance increase is very apparent. How do the execution plans differ? – Jeff Meatball Yang Jul 16 '09 at 19:13
@Jeff: they differ much, as you can see :) JOIN uses NESTED LOOPS with master as a leading table, CROSS APPLY uses NESTED LOOPS too but t is leading and TOP is applied to master on each loop. – Quassnoi Jul 16 '09 at 19:58
5  
Although this is the most popular answer I don't think it answers the actual question "What is the main purpose of using CROSS APPLY?". The main purpose is to enable table functions with parameters to be executed once per row and then joined to the results. – MikeKulls Aug 12 '11 at 0:40
2  
@Mike: how do you call a TVF with INNER JOIN? – Quassnoi Aug 12 '11 at 1:09
feedback

cross apply sometimes enables you to do things that you cannot do with inner join.

Example (a syntax error):

select F.* from sys.objects O
inner join dbo.myTableFun(O.name) F
on F.schema_id= O.schema_id

This is a syntax error, because table functions can only take variables or constants as parameters when using inner join.

However:

select F.* from sys.objects O
cross apply ( select * from dbo.myTableFun(O.name) ) F
where F.schema_id= O.schema_id

This is legal.

link|improve this answer
I think this is the reasoning behind why we have cross apply. If you check out the link below this is the first thing MS says about cross apply. It might have other uses but I think this is the reason it was introduced. Without it table functions would not be usable in a lot of situations. technet.microsoft.com/en-us/library/ms175156.aspx – MikeKulls Aug 12 '11 at 0:38
cross apply also produces a nice execution plan when coupled with inline table functions while maintaining much needed modularity. – pwned Nov 19 '11 at 10:10
feedback

here is an example when CROSS APPLY makes a huge difference with performance:

Using CROSS APPLY to optimize joins on BETWEEN conditions

Note that besides replacing inner joins you can also reuse code such as truncating dates without paying performance penalty for involing scalar UDFs, for example: Calculating third Wednesday of the month with inline UDFs

link|improve this answer
Nice example and a nice blog post. Definitely a +1. – Quassnoi Jul 16 '09 at 18:39
feedback

I guess it should be readability ;)

CROSS APPLY will be somewhat unique for people reading to tell them that a UDF is being used which will be applied to each row from the table on the left.

Ofcourse, there are other limitations where a CROSS APPLY is better used than JOIN which other friends have posted above.

link|improve this answer
feedback

This is a great article on the matter.

link|improve this answer
While this is a good article, this doesn't really answer my question insofar as I want to know when I should use CROSS APPLY instead of an INNER JOIN – Jeff Meatball Yang Jul 16 '09 at 17:53
feedback

You should not. Cross apply only works on SQL Server, if you know that your code will never be ported or required to run on a different DB (and who does in these times!) then go right ahead. If you think there might be a chance it'll need to run on Oracle or MySQL or anything else, then you have to start questioning whether the performance benefit over a standard join outweighs the time you'll spend rewriting your queries to work.

People say programmer productivity is more important than computer performance nowadays, though I question that sometimes and DB perf probably takes precedence.

link|improve this answer
seems to me your paragraphs conflict each other – Mark Schultheiss Jul 22 '11 at 17:43
why? I think efficient systems are most important, within reason. I won't spend weeks rewriting queries for 1% performance improvement. – gbjbaanb Jul 22 '11 at 20:37
1  
The OP question was sql server specific so use within scope is not at issue as is making is ANSI standard. Performance - some things are MUCH faster using CROSS APPLY and some queries are MUCH easier to create/understand/maintain when it is used properly which in the end says "use it when it applies (fast, easy, maintainable)" and not to worry about porting as that seems out of scope. Your conflict is the "portable" vs "fast". Just because I might not always have a electricty does not prevent me from using my power saw and force hand saw use. This does not mean I don't see your points however – Mark Schultheiss Jul 28 '11 at 14:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.