Eu tenho uma função definida pelo usuário: create function ut_FooFunc(@fooID bigint, @anotherParam tinyint) returns @tbl Table (Field1 int, Field2 varchar(100)) as begin -- blah blah end Agora eu quero juntar isso em outra tabela, assim: select f.ID, f.Desc, u.Field1, u.Field2 from Foo f join...