• It makes no sense that your udf needs to come before your table if it uses a column from your table.

    This might help you:

    SELECT *

    FROM mytable a

    OUTER APPLY dbo.udf_Myfunction(a.col1) udf

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2