SQL Server 2005 to 2012 Differences for Developers
We are upgrading from SQL Server 2005 to 2012. There are a lot of features for developers that have been added over those 7 years. Here are some you might find useful. 1. You can assign a value to a variable when you declare it. DECLARE @Status varchar(50) = ‘Success’, @Today Date = Getdate() 2. […]
SQL Server 2005 to 2012 Differences for Developers Read More »
