By: Ashish Kumar Mehta | Updated: 2011-12-28 | Comments (6) | Related: 1 | 2 | > Functions System
Problem
SQL Server 2012, has new features to perform Logical Functions such as CHOOSE and IIF that can be used to perform logical operations. In this tip we take a look at some basic examples of how this could be used.
Solution
In this tip we will discuss how to utilize the below mentioned newly introduced Logical Functions in SQL Server 2012.
1. CHOOSE Logical Function
2. IIF Logical Function
Using CHOOSE Logical Function
The CHOOSE function, which is available in SQL Server 2012, will return the item at the specified index from the list of values which are available. In this example we have 3 values and we are asking to select the third value in the list which is "SQL Server 2012".
SELECT 'New SQL Server Release' = CHOOSE(3, 'SQL Server 2008', 'SQL Server 2008 R2', 'SQL Server 2012') GO
Let's execute the below TSQL code which will use the CHOOSE function to return the month value using the CHOOSE logical function.
Use AdventureWorks2008R2 GO SELECT DISTINCT(FirstName + ' ' + LastName) AS Name ,DATEPART(DD, ModifiedDate) AS [Date] ,CHOOSE(DATEPART(MM,ModifiedDate),'January','February','March','April','May','June', 'July','August','September','October','November','December')[Month] ,DATEPART(YYYY, ModifiedDate) AS [Year] FROM [Person].[Person] ORDER BY Name ASC GO
Using IIF Logical Function
The IIF function, which is available in SQL Server 2012, returns one of the two values depending upon whether the Boolean expression evaluates to either True or False.
DECLARE @FirstArgument INT = 10 DECLARE @SecondArgument INT = 20 SELECT IIF ( @FirstArgument > @SecondArgument , 'TRUE', 'FALSE' ) AS [Output Using IIF Logical Function] GO
Let's execute the below TSQL code which will use the IIF function to return the results. The logic is if the StateProvinceCode is between 0 and 95 then return France otherwise return Canada.
Use AdventureWorks2008R2 GO SELECT StateProvinceCode ,CountryRegionCode ,IIF(TRY_PARSE(StateProvinceCode AS INT) Between 0 AND 95,'France','Canada') AS Country FROM Person.StateProvince WHERE StateProvinceCode IN ('95','AB') GO
Next Steps
- Stay tuned for more tips on SQL Server 2012 and check out these related tips:
About the author
This author pledges the content of this article is based on professional experience and not AI generated.
View all my tips
Article Last Updated: 2011-12-28