Is it possible to INSERT the result of the following query into new table
SELECT
O.[full name],
O.[EID],
O.[Loc],
GL.*
FROM
[dbo].[team] O
OUTER APPLY
[dbo].[fngetlocdetail] (O.[eWorkCity]) GL
As standalone it works but I cannot INSERT
results these results into a new table. Please guide. Thanks