I'm currently debugging an Ms SQL Function (SQL 2008).
In this function, I have a variable declared this way:
DECLARE @TempTable TABLE ( Id INT UNIQUE );
Then, I insert some records using an insert into...select statement.
When debugging, I would like to see the records in this table.
Is there a way to do this?
Thanks