October 12, 2016 at 12:08 am
Comments posted to this topic are about the item Stairway to U-SQL Level 10: Table-Valued Functions and UDTs
October 12, 2016 at 3:28 am
Great article and examples.
Some additional comments:
RETURNS @result
CREATE FUNCTION Tvf(...) RETURNS @res1, @res2 AS ...
. The TVF then gets invoked with (@r1, @R2) = Tvf(...);
Cheers
Michael
October 12, 2016 at 3:51 am
Hi Mike
Thanks for these comments - much appreciated.
I will try to work these into a future article.
Regards,
Mike.
October 12, 2016 at 6:58 am
It was nice just being reminded about TVFs, thanks.
October 12, 2016 at 6:26 pm
Good article especially considering the interplay between UDTs and TVFs.
Shifting gears, does "U-SQL" allow for the concept of iTVFs (inline TVFs) rather than mTVFs (multi-statement TVFs)?
--Jeff Moden
Change is inevitable... Change for the better is not.
October 12, 2016 at 6:55 pm
Hi Jeff
U-SQL only has one type of TVFs: imTVFs: inlineable, multi-statement TVFs. No "stupid" differentiation.
Cheers
Michael
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply