Click here to Skip to main content
Licence CPOL
First Posted 9 Mar 2010
Views 5,386
Bookmarked 3 times

SQL SERVER – Order of Columns in Update Statement Does not Matter

By | 9 Mar 2010 | Article
SQL SERVER – Order of Columns in Update Statement does not matter
 
Part of The SQL Zone sponsored by
See Also

Introduction

I received a few comments that I have not written on simple subjects recently. In fact, this blog is dedicated to all those who are really learning SQL Server and almost all the articles and posts are posted here keeping this goal in mind. One of the questions in the email which requested to write simple subjects was “Does the order of columns in UPDATE statements matter?” Let me try to answer this question today.

The question in detail:

Does the order of the columns in UPDATE statements matter?
For example, is there any difference between option 1 and option 2 of UPDATE statement?

Option 1

UPDATE TableName
SET Col1 = 'Value', Col2 = 'Value2'

Option 2

UPDATE TableName
SET Col2 = 'Value2', Col1 = 'Value'

The answer is NO. There is no difference between them in SQL Server.

There are two related posts on this subject, which I had written previously. I suggest you read them as well. They are pretty old but still valid. I am looking for some suggestions for the same articles too.

SQL SERVER – Transaction and Local Variables – Swap Variables – Update All At Once Concept

Update All at Once concept is purely based on Atomicity (link goes to Wikipedia). In an atomic transaction, a series of database operations, either all of them occur, or nothing occurs. A guarantee of atomicity prevents updates to the database occurring only partially, which can cause greater problems than rejecting the whole series outright.

SQL SERVER – Change Order of Column In Database Tables

Well, I strongly advocate that order of columns in database table should not matter. As a matter of fact, while searching for the subject, I end up on my own blog where I have previously suggested why it was necessary. I suggest you to make the right decision based on your business need.

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

License

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

About the Author

pinaldave

Founder
http://blog.SQLAuthority.com
India India

Member

Follow on Twitter Follow on Twitter
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.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralReally obvious ! Pinmemberebrelion22:15 20 Mar '10  
GeneralOrder of columns PinmemberDan Buskirk6:12 16 Mar '10  
GeneralThanks for bringing this up Pinmemberdjj551:14 16 Mar '10  
GeneralMy vote of 1 PinmemberMR_SAM_PIPER13:59 15 Mar '10  
GeneralMy vote of 1 PinmemberJuraj Suchan7:19 9 Mar '10  
GeneralMy vote of 1 Pinmemberwookiecrisp2:32 9 Mar '10  
GeneralRe: My vote of 1 PinmemberJuraj Suchan7:19 9 Mar '10  

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

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120517.1 | Last Updated 9 Mar 2010
Article Copyright 2010 by pinaldave
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid