With the table valued function you generally use Cross Apply
.
Select *
From myTable m
CROSS APPLY fn_function(m.field1, m.field2)
With the table valued function you generally use Cross Apply
.
Select *
From myTable m
CROSS APPLY fn_function(m.field1, m.field2)