I'm trying an update with a conditional sub-select which could return null...

UPDATE 
aTable SET 
aColumn = 
(   
    SELECT TOP 1    
        CASE 
            WHEN bTable.someColumn = 1 THEN someValue1 
            WHEN bTable.someColumn = 2 THEN someValue2 
            ELSE someValue3
        END  
    FROM         
        bTable
    WHERE
        bTable = @someCriteria
    ORDER BY
        someSortColumn
) WHERE 
aTable.id = @someId;

If the "bTable = @someCriteria" clause causes no results to be returned from the SELECT, it attempts to insert a NULL into "aColumn", which in this case is a NOT NULL column.

Question

How do I get it to simply leave "aColumn" alone in this circumstance?

Many thanks.

link|improve this question

Has none of the answers worked for you? – Andriy M Jun 21 '11 at 12:42
feedback

3 Answers

up vote 5 down vote accepted
...
aColumn = 

    ISNULL(
        (   
            SELECT TOP 1    
                CASE 
                    WHEN bTable.someColumn = 1 THEN someValue1 
                    WHEN bTable.someColumn = 2 THEN someValue2 
                    ELSE someValue3
                END  
            FROM         
                bTable
            WHERE
                bTable = @someCriteria
            ORDER BY
                someSortColumn
        ), aColumn)
...
link|improve this answer
Excellent - Thanks Ggbn. I did try this out before, but was missing the extra parentheses around the SELECT. – ETFairfax Jun 17 '11 at 10:29
feedback
UPDATE A SET 
aColumn = B.Value 
FROM aTable AS A
  CROSS JOIN  
            (   
                SELECT TOP 1    
                    CASE 
                        WHEN bTable.someColumn = 1 THEN someValue1 
                        WHEN bTable.someColumn = 2 THEN someValue2 
                        ELSE someValue3
                    END  
                FROM         
                    bTable
                WHERE
                    bTable = @someCriteria
                ORDER BY
                    someSortColumn
            ) AS B(Value)
WHERE            
  A.id = @someId;

Difference between my answer and answer by gbn is that here column aColumn is not modified. I think that the isnull(..., aColumn) actually updates the value so if you have an update trigger it will fire.

link|improve this answer
This solution is definitely more preferable than @gbn's if the subquery, when it returns something, is guaranteed to return a value. – Andriy M Jun 17 '11 at 12:33
1  
@Andriy – Alias? AS B(Value) – Mikael Eriksson Jun 17 '11 at 12:38
@Andriy – This will not prevent null values if someValue1, 2 or 3 contains null. However OP said "If the "bTable = @someCriteria" clause causes no results." – Mikael Eriksson Jun 17 '11 at 12:41
B(Value), yes, I missed that, sorry. – Andriy M Jun 17 '11 at 12:44
1  
Since the OP is aware that the column being updated cannot accept NULLs, I think we can more or less safely assume that their subquery is guaranteed to return no NULLs. I just wanted to point that out for the OP as well as for other people. And +1 :) – Andriy M Jun 17 '11 at 12:54
feedback
UPDATE aTable
SET aColumn = s.Value
FROM (   
    SELECT TOP 1    
        CASE 
            WHEN bTable.someColumn = 1 THEN someValue1 
            WHEN bTable.someColumn = 2 THEN someValue2 
            ELSE someValue3
        END AS Value
    FROM         
        bTable
    WHERE
        bTable = @someCriteria
    ORDER BY
        someSortColumn
) s
WHERE aTable.id = @someId
  AND s.Value IS NOT NULL;
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.