Viewing post 1 (of 1 total)
You can do this with this command:
-- Local Server:
if OBJECT_ID('tempdb..#tmp1') IS NOT NULL drop table #tmp1
CREATE TABLE #tmp1 ( codigo BIGINT, descricao VARCHAR(100) )
--...
February 14, 2013 at 6:29 am
#1587883