A very short post here showing some of the new T-SQL constructs in katmai . Check out the following code snippet: declare @i int = 1; set @i += 1; create table t1 (col1 int ); insert t1 values (@i),(@i+1); There are actually three syntax enhancements
Read More...