Skip to Content
Professional SQL Server™ 2005 Programming
book

Professional SQL Server™ 2005 Programming

by Robert Vieira
December 2006
Beginner
912 pages
24h 44m
English
Wrox
Content preview from Professional SQL Server™ 2005 Programming

3.3. Changing What You've Got with the UPDATE Statement

The UPDATE statement, like most SQL statements, does pretty much what it sounds like it does— it updates existing data. The structure is a little bit different from a SELECT, though you'll notice definite similarities. Let's look at the syntax:

UPDATE <table name>
SET <column> = <value> [,<column> = <value>]
[FROM <source table(s)>]
[WHERE <restrictive condition>]

An UPDATE can be created from multiple tables, but can affect only one table. What do I meanby that? Well, we can build a condition, or retrieve values from any number of different tables (via a join), but only one table at a time can be the subject of the update action. For now, we'll look at a simple update.

Let's start off by looking at our old friend Jo Brown (you may remember her from our look at joins earlier in the chapter). It seems that Jo has recently gotten married, and we need to make sure that her data is accurate. Let's run a query to look at one row of data:

SELECT e.EmployeeID,
    e.MaritalStatus,
    ce.FirstName,
    ce.LastName
FROM HumanResources.Employee e
JOIN Person.Contact ce
  ON e.ContactID = ce.ContactID
WHERE ce.FirstName = 'Jo'
  AND ce.LastName = 'Brown';

Which returns the following:

EmployeeID  MaritalStatus FirstName                LastName
----------- ------------- ------------------------ --------------------------------
16          S             Jo                       Brown

(1 row(s) affected)

Let's update the MaritalStatus value to the more proper "M":

UPDATE e SET MaritalStatus = 'M' FROM HumanResources.Employee ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Professional Microsoft® SQL Server® 2008 Programming

Professional Microsoft® SQL Server® 2008 Programming

Rob Vieira, Mahsa Nakhjiri

Publisher Resources

ISBN: 9780764584343Purchase book