Click here to Skip to main content
15,896,912 members
Articles / Database Development / SQL Server

SQL SERVER – A Puzzle – Swap Value of Column Without Case Statement

Rate me:
Please Sign up or sign in to vote.
3.00/5 (2 votes)
11 Jun 2012CPOL2 min read 16.3K   3   4
Swap Value of Column Without Case Statement in SQL Server

For the last few weeks, I have been doing Friday Puzzles and I am really loving it. Yesterday, I received a very interesting question by Navneet Chaurasia on Facebook Page. He was asked this question in one of the job interviews. Please read the original thread for a complete idea of the conversation. I am presenting the same question here.

Puzzle

Let us assume there is a single column in the table called Gender. The challenge is to write a single update statement which will flip or swap the value in the column. For example, if the value in the gender column is ‘male’ swap it with ‘female’ and if the value is ‘female’ swap it with ‘male’.

Here is the quick setup script for the puzzle.

SQL
USE tempdb
GO
CREATE TABLE SimpleTable (ID INT, Gender VARCHAR(10))
GO
INSERT INTO SimpleTable (ID, Gender)
SELECT 1, 'female'
UNION ALL
SELECT 2, 'male'
UNION ALL
SELECT 3, 'male'
GO
SELECT *
FROM SimpleTable
GO

The above query will return the following result set:

The puzzle was to write a single update column which will generate the following result set:

There are multiple answers to this simple puzzle. Let me show you three different ways. I am assuming that the column will have either value ‘male’ or ‘female’ only.

Method 1: Using CASE Statement

I believe this is going to be the most popular solution as we are all familiar with the CASE Statement.

SQL
UPDATE SimpleTable
SET Gender = CASE Gender WHEN 'male' THEN 'female' ELSE 'male' END
GO
SELECT *
FROM SimpleTable
GO

Method 2: Using REPLACE Function

I totally understand it is not the cleanest solution, but it will for sure work in the given situation.

SQL
UPDATE SimpleTable
SET Gender = REPLACE(('fe'+Gender),'fefe','')
GO
SELECT *
FROM SimpleTable
GO

Method 3: Using IIF in SQL Server 2012

If you are using SQL Server 2012, you can use IIF and get the same effect as CASE statement.

SQL
UPDATE SimpleTable
SET Gender = IIF(Gender = 'male', 'female', 'male')
GO
SELECT *
FROM SimpleTable
GO

You can read my article series on various functions of SQL Server 2012 over here.

Let us clean up.

SQL
DROP TABLE SimpleTable
GO

Question to You

I came up with three simple tricks where there is a single UPDATE statement which swaps the values in the column. Do you know any other simple trick? If yes, please post here in the comments. I will pick two random winners from all the valid answers. Winners will get:

I will announce the winners on coming Monday.

Reference: Pinal Dave (http://blog.SQLAuthority.com)

Filed under: CodeProject, PostADay, SQL, SQL Authority, SQL Interview Questions and Answers, SQL Puzzle, SQL Query, SQL Server, SQL Tips and Tricks, SQLServer, T SQL, Technology

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Founder http://blog.SQLAuthority.com
India India
Pinal Dave is a Microsoft Technology Evangelist (Database and BI). He has written over 2200 articles on the subject on his blog at http://blog.sqlauthority.com. Along with 8+ years of hands on experience he holds a Masters of Science degree and a number of certifications, including MCTS, MCDBA and MCAD (.NET). He is co-author of two SQL Server books - SQL Server Programming, SQL Wait Stats and SQL Server Interview Questions and Answers. Prior to joining Microsoft he was awarded Microsoft MVP award for three continuous years for his contribution in community.

Comments and Discussions

 
QuestionNice puzzle Pin
Novakovi24-Oct-14 1:22
Novakovi24-Oct-14 1:22 
Questionhere a little tricky one Pin
XiMountain13-Jun-12 5:30
XiMountain13-Jun-12 5:30 
GeneralMy vote of 1 Pin
SalCon13-Jun-12 5:05
SalCon13-Jun-12 5:05 
QuestionNot an article Pin
Mike Hankey11-Jun-12 3:21
mveMike Hankey11-Jun-12 3:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.