I have a stored procedure with a few steps. Two of the steps require the use of a DECLARE
TABLE
but I do not require these tables at the same time.
The tables both have 2 BIGINT
columns and may have up to 100 rows.
Is it better practice to declare the two tables or to DELETE
and re-use one?
EDIT: If you're interested, this is a follow-up to the stored procedure devised in this question