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?
|
I have the following SQL statement (that is intended for SQL Server):
I get an error: "Invalid column name 'maxV'" Why?
| |||
|
feedback
|
|
Try using
| |||||||||
feedback
|
|
Try this...
| |||||
feedback
|
|
Another way of doing it...
| |||||||||
feedback
|