Please enable Javascript to correctly display the contents on Dot Net Tricks!
 
Become an Expert in C#, .NET, MVC, JAVA, PHP, AngularJS, Hadoop, Android, iphone, Testing etc.
by Joining our Training Programs and Take Your Career to the Next Level! To know more make a call on +91 98 71 749695

Swap the values of two columns in SQL Server

Posted By : Shailendra Chauhan, 07 Nov 2012
Updated On : 24 Jun 2014
Total Views : 124,153   
Version Support : SQL Server 2005,2008,2012
 
Keywords : interchange the values of two columns in the database table,swap the two columns values in Sql server,interchnage tables columns values in sql

Do you have fun with SQL Server?. Let's start fun with SQL Server. Suppose you want to swap the values of two columns of a table in SQL Server, how could you achieve this tricky task?. Actually, it is simple and so funny.

Suppose you have a Customer table in the database with the following data and you want to interchange the values of columns Name and Address then how do you do?

 SELECT * FROM CUSTOMER 

Don't worry, to do this task, you need to just write a simple update query for Customer table like as :

 UPDATE Customer SET Name=Address , Address=Name 

Now After query execution you will find the the values of columns Name and Address have been interchanged, that's so cool.

 SELECT * FROM CUSTOMER 

Note

  1. Data type of both the columns should be same and also length should be enough to hold the swapped column data other wise data will be truncated.

What do you think?

I hope you will enjoy this trick while having fun with SQL Server. I would like to have feedback from my blog readers. Your valuable feedback, question, or comments about this article are always welcome.

 
Further Reading
 
About the Author
Hey! I'm Shailendra Chauhan full-time author, consultant & trainer. I have more than 6 years of hand over Microsoft .NET technologies and other web technologies like JavaScript, AngularJS, NodeJS etc. I am an entrepreneur, the founder & chief editor of www.dotnet-tricks.com and www.dotnettricks.com. I am author of most popular e-books for technical Interview on ASP.NET MVC Interview Questions and Answers & AngularJS Interview Questions and Answers & LINQ Interview Questions and Answers.
I have delivered 100+ training sessions to professional world-wide over Microsoft .NET technologies such C#, ASP.NET MVC, WCF, Entity Framework and other mobile technologies such Ionic, PhoneGap, Corodva. Read more...
 
Free Interview Books
 
SUBSCRIBE & FOLLOW US
 
Browse By Category
 
 
Like us on Facebook