I have a table with values ββin one column that should be separated by some function, say F. Function F takes a value and splits it into a table of values ββ- the result is a table.
What is the most efficient way to apply this function to each value of the source table and have a result table with all values ββseparated? I know that I can use the cursor, but I wonder if there is a more reasonable solution?
The result should look something like this:
SELECT F(column) FROM SourceTable
But this is not possible because F is a table value.
source share