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 ...
3
votes
1answer
54 views
TSQL and case when with multiple whens?
I have several conditions and the result for those should be the same. I searched the net and found stuff like this:
CASE ProductLine
WHEN 'R' THEN 'Road'
WHEN 'M' THEN 'Mountain'
WHEN ...
1
vote
2answers
53 views
SQL - CASE STATEMENT - WHEN statement AND statement
I am having a problem trying to work out the neatest solution for the following problem.
I have a table Purchase which has a State column, whereby 1 is authorised, 2 is completed and their are some ...
1
vote
4answers
353 views
Exception executing a stored procedure with CASE switching from C# (T-SQL)
I have a NVARCHAR(max) column in a table and a stored procedure that would update this column as well as any other column in the table using CASE switching:
CREATE PROCEDURE updateTable
...
0
votes
0answers
57 views
SQLAlchemy - SQL Server REPLICATE function
Is there a way to write this query using SQLAlchemy's Session.query? This is a SQL Server 2008 query:
SELECT
name, ..., row_number() OVER (
PARTITION BY col1, col2, col3
ORDER BY ...
0
votes
2answers
2k views
TSQL Case/When question
I have a huge query which uses case/when often. Now I have this SQL here, which does not work.
(select case when xyz.something = 1
then
'SOMETEXT'
else
(select case when ...
0
votes
6answers
567 views
SQL Server CASE WHEN without using CASE WHEN
Is there a way to rewrite a Transact SQL statement that uses a CASE WHEN structure to do the same without using the CASE WHEN?
I'm using a product that has a built-in query designer and its own ...
0
votes
1answer
444 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.
...