Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 Transact-SQL (2000)
 Correlated at FROM clause

Author  Topic 

ms65g
Constraint Violating Yak Guru

497 Posts

Posted - 2010-05-06 : 06:05:38
Hi, I have a challenge question.
Assume following query, How can I implement it by SQL Server 2000 T-SQL?
--SQL Server 2005
SELECT D.*
FROM ( select ....
from myTable
where .....
)D1
CROSS APPLY dbo.myFunction(D1.MyID, D1.MyDate) AS D;

   

- Advertisement -