vote up 0 vote down star

With a temporary table as:

DECLARE @Results TABLE (
    CDA		varchar(60),
    Found		int default 0,
    Accepted	int default 0,
    Percentage	decimal(3,0) default 0.0,
)

How do you take populated Found and Accepted columns and write it back to the Pecentage column?

I have:

UPDATE @Results SET Percentage = (
    SELECT (((Accepted * 1.00) / Found) * 100) FROM @Results 
)

Which if you take the SELECT line (comment out the UPDATE) it returns the correct values. However in the context of the UPDATE it fails with Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or when the subquery is used as an expression. The statement has been terminated.

How do I write the values back to the correct row?

flag

58% accept rate

2 Answers

vote up 1 vote down check
UPDATE Result
   SET Percentage = Accepted / Found * 100

It won't work though with FOUND and ACCEPTED defined as INT, use cast when dividing or declare them with the same type as PERCENTAGE.

link|flag
I can't believe it was that simple! However it is a moot point as I ended up calculating the percentage in reporting services via an expression. – graham.reeds Nov 4 at 16:50
vote up 1 vote down

You need a where clause, e.g. (untested)

UPDATE Result oResult
  SET Percentage = (SELECT Accepted / Found * 100
                      FROM Result iResult 
                     WHERE iResult.cda = oResult.cda);

However, if this is calculated you may wish not to have this as a column and just add it to any queries instead. Note, most databases have a percent function.

link|flag
I thought about the query but why complicate the query (this will becomea stored procedure) when I can hide the complexity here? – graham.reeds Nov 4 at 10:29
It gives Invalid Syntax for oResult. Tried both equals and AS and neither works. – graham.reeds Nov 4 at 10:39
What database are you using? Works on oracle here. > but why complicate the query (this will becomea stored procedure) when I can hide the complexity here? Because you know the data will be correct and you are not relying on your procedure having been called each time you update a value. – vickirk Nov 4 at 10:55
Appears you are not allowed to Alias Tables in update statements. – graham.reeds Nov 4 at 11:02
SQL Server 2000. – graham.reeds Nov 4 at 11:04
show 3 more comments

Your Answer

Get an OpenID
or

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