I am trying to join with table values function, it gives me error this error:
Msg 170, Level 15, State 1, Line 2 Line 2: Incorrect syntax near '.'.
SELECT * from tbl t
inner join dbo.ufn_CSVToTable(t.text) a
on t.text = a.String
What can be the error?