I have the following SQL statement (that is intended for SQL Server):

INSERT INTO t1 (c1, c2) 
VALUES (1, CASE WHEN (SELECT MAX(c2) FROM t1 AS maxV) IS NOT NULL THEN maxV+1 ELSE 1 END);

I get an error: "Invalid column name 'maxV'"

Why?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Try using COALESCE:

INSERT INTO t1 (c1, c2) 
SELECT 1, COALESCE(MAX(c2), 0) + 1
FROM t1
link|improve this answer
Very nice! Thank you! I just learned something. – ahmd0 Nov 12 '11 at 8:36
1  
COALESCE better to use than ISNULL? (nice solution +1) – Naeem Sarfraz Nov 12 '11 at 8:41
This method seems to be the only one that is short and works. – ahmd0 Nov 12 '11 at 9:26
feedback

Try this...

INSERT INTO t1 (c1, c2) 
VALUES (
    1, 
    CASE 
        WHEN (SELECT MAX(c2) FROM t1) IS NOT NULL 
        THEN (SELECT MAX(c2)+1 FROM t1)
        ELSE 1 
    END);
link|improve this answer
Thank you. Although, wouldn't it be redundant (speed wise) to do the same SELECT MAX(c2) two times? – ahmd0 Nov 12 '11 at 8:37
I don't think you can re-use the column as you have tried, you're right it's not the best way to do it. My other answer and Mark's is a better way, I was just fixing your original query with this answer. – Naeem Sarfraz Nov 12 '11 at 8:39
feedback

Another way of doing it...

INSERT INTO t1 (c1, c2) 
VALUES (1, ISNULL(SELECT MAX(c2) FROM t1, 0)+1);
link|improve this answer
This answer is also very good. I didn't know that I can use SELECT inside INSERT. Thank you! – ahmd0 Nov 12 '11 at 8:37
I tried this method and it didn't work. Evidently you cannot so SELECT from within VALUES when doing INSERT INTO. It'd be nice if someone could confirm it? – ahmd0 Nov 12 '11 at 9:25
1  
You can, but you have to wrap the SELECT statement in parenthesis: INSERT INTO t1 (c1, c2) VALUES (1, ISNULL((SELECT MAX(c2) FROM t1), 0) + 1); – Gonsalu Nov 12 '11 at 17:59
feedback

Your Answer

 
or
required, but never shown

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