case in sql server 2008 r2

case in sql server 2008 r2

We can use CASE in single line query in SQL Server. The given below example might help you.

DECLARE  @NET VARCHAR(10)    
SET @NET ='3G'

SELECT (CASE @NET WHEN '4G' THEN 1 WHEN '3G' THEN 2 WHEN '2G'  THEN 3 END) AS NETWORKID

Result : 

NETWORKID is 2

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^