Today's teaser is very simple First create this table CREATE TABLE #Tran ( TranCountDefault int DEFAULT ( @@TranCount ), TranCountPassedIn int ) As you can see that table has two columns, one column has a default of @@TRANCOUNT. Now run this piece of
Read More...