DECLARE @BatchStart DATETIMESET @BatchStart = GETDATE()DECLARE @Test1 TABLE (id int)CREATE TABLE #Test2 (id int)SELECT * FROM TempDB.sys.tables where create_date >= @BatchStartDROP TABLE #Test2
We walk in the dark places no others will enterWe stand on the bridge and no one may pass
DECLARE @Test TABLE ( id INT IDENTITY PRIMARY KEY, name VARCHAR(50))INSERT INTO @Test (name)SELECT name FROM sys.columnsSELECT * from @Test WHERE id between 10 and 200