I have a simple table with IDs:
ObjectId
----------
100
101
102
I'd would like to execute a function fn_GetStuff(Id) multiple times like this:
fn_GetStuff(100)
fn_GetStuff(101)
fn_GetStuff(102)
Is it possible to do this without using a loop?
I tried this it doesn't work:
SELECT *
FROM myTable
INNER JOIN fn_GetStuff(myTable.ObjectId)