leonjollans
Programmer
This feels like it should be obvious, but it's escaping me just now.
I have a particularly complex stored procedure that runs dynamic sql to return a dynamic result set. I now want to select a subset of rows and columns from a known set of results.
in theory, I need to do something like
[blue]select[/blue] obj_id, obj_name, dynamic_field_1 [blue]from[/blue] ( [blue]exec[/blue] my_storedProcedure 0,2 )
I'm sure I've done something like this before but I just can't remember how to do it.
Can U Help )
I have a particularly complex stored procedure that runs dynamic sql to return a dynamic result set. I now want to select a subset of rows and columns from a known set of results.
in theory, I need to do something like
[blue]select[/blue] obj_id, obj_name, dynamic_field_1 [blue]from[/blue] ( [blue]exec[/blue] my_storedProcedure 0,2 )
I'm sure I've done something like this before but I just can't remember how to do it.
Can U Help )