2
테이블 반환 함수로 테이블을 조인하는 방법은 무엇입니까?
사용자 정의 함수가 있습니다. create function ut_FooFunc(@fooID bigint, @anotherParam tinyint) returns @tbl Table (Field1 int, Field2 varchar(100)) as begin -- blah blah end 이제 다른 테이블에서 이것을 조인하고 싶습니다. select f.ID, f.Desc, u.Field1, u.Field2 from Foo f join ut_FooFunc(f.ID, 1) u -- doesn't work where f.SomeCriterion = 1 즉, 1 …