up vote 11 down vote favorite
4
share [g+] share [fb]

I need to update a row in a table, and get a column value from it. I can do this with

UPDATE Items SET Clicks = Clicks + 1 WHERE Id = @Id;
SELECT Name FROM Items WHERE Id = @Id

This generates 2 plans/accesses to the table. Is possibile in T-SQL to modify the UPDATE statement in order to update and return the Name column with 1 plan/access only?

I'm using C#, ADO.NET ExecuteScalar() or ExecuteReader() methods.

link|improve this question

67% accept rate
feedback

5 Answers

up vote 19 down vote accepted

You want the OUTPUT clause

UPDATE Items SET Clicks = Clicks + 1
OUTPUT INSERTED.Name
WHERE Id = @Id
link|improve this answer
Neat, learned something new today. Thanks! – Joel Coehoorn Mar 31 '09 at 12:57
I guess this only works for SQL-2005 – Jhonny D. Cano -Leftware- Mar 31 '09 at 13:02
And above, yes. With SQL Server 2000, see Learning's response – Marc Gravell Mar 31 '09 at 13:07
IIRC, the OUTPUT clause was introduced as part of SQL Server 2005 Service Broker - msdn.microsoft.com/en-us/library/ms345108.aspx – Russ Cam Mar 31 '09 at 13:11
Thanks, how can I retrieve the output parameter from ExecuteNonQuery? – Robert Mar 31 '09 at 14:03
show 4 more comments
feedback

Accesses table only once :

UPDATE Items SET Clicks = Clicks + 1 , @Name = Name WHERE Id = @Id;
select @name;
link|improve this answer
Marc's approach is much better because my query inherently assumes that there is one name for one Id which might/not be true. – Learning Mar 31 '09 at 13:11
feedback

If you're using SQL Server 2005 onwards, the OUTPUT clause is ideal for this

link|improve this answer
feedback

Use a Stored procedure for this.

link|improve this answer
feedback

Create a stored procedure that takes the @id as a parameter and does both of those things. You then use a DbDataAdapter to call the stored procedure.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.