Thread: SQL Analyzer
View Single Post

   
  #4 (permalink)  
Old 02-29-2008, 05:17 AM
louis
 
Posts: n/a
Default Re: SQL Analyzer

UDFs have many restrictions but I find them quite useful. I frequently
write stuff like the following, where the UDFs contains all kinds of
nasty code. You can even nest UDFs, although I try not to get carried
away with it.
select ...
from myUdfA(@params)
join myUdfB(@params)
on ...

Reply With Quote