Tagged Questions
3
votes
3answers
52 views
Confused over SQL statement for CASE WHEN inside INSERT
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 ...
0
votes
1answer
445 views
SQL: Populate single row(tbl 1) from multiple rows(tbl 2); cross DB
I have created a single table in my primary DB called tblGlobalIDMapping that will assign a GUID to all entries and store the other 3 primary ID's across the App to provide for a single ID repository.
...