Hello,
e.g. select script:
select *
into #t1
from country t2
where t2.country_code = 'AD'
select *
from #t1
DROP TABLE #t1 --with or without this line
This script results in:
updated rows
------------------
1
Expected result:
Other tools, e.g. MS SQL Server Management Studio, Toad for SQL Server display result set of the last select
Do you think it's possible to implement this? I'm tired of using MS SQL Server Management Studio for such cases.