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
3answers
41 views
Are both queries the same?
Are both queries are same ?
Do both return the same result ?
1)
IF EXISTS(
SELECT
1
FROM
Users u
WHERE
u.UPIN = @AttendingDoctorID)
BEGIN
SELECT
...
3
votes
5answers
153 views
How do I use the value from row above when a given column value is zero?
I have a table of items by date (each row is a new date). I am drawing out a value from another column D. I need it to replace 0s though. I need the following logic: when D=0 for that date, use the ...
2
votes
3answers
40 views
Converting SQL CASE WHEN statement plus group statement into LINQ
How can I write in fluent linq syntax the "case when" sql statement?
select QueueItem, COUNT(*) as [Count],
SUM(CASE WHEN Queued = 0 THEN 1 ELSE 0 END) AS [Sent],
SUM(CASE WHEN Queued = 1 THEN 1 ELSE ...
2
votes
2answers
2k views
How can I SELECT multiple columns within a CASE WHEN on SQL Server?
I have searched this site extensively but cannot find a solution.
Here is the example of my query:
SELECT
ActivityID,
Hours = (CASE
WHEN ActivityTypeID <> 2 THEN
...
1
vote
2answers
101 views
Replace SQL Query
I want to replace this Query
DECLARE @tmpUser TABLE( UserId INT, UserType INT )
INSERT INTO @tmpUser
SELECT
u.UserId,
1
FROM
Users u (nolock)
WHERE
u.UPIN = @AttendingDoctorID
IF ...
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
4answers
93 views
SQL: Nested Condition in Case When Clause
I have a Case-When clause like this;
(CASE WHEN A.YAZ_ADRES IS NULL
THEN (B.IS_ADRES1 +' '+B.IS_ADRES2)
ELSE A.YAZ_ADRES END)
I want to use a condition after THEN
For Example;
...
0
votes
2answers
380 views
SQL Server Group by with WHEN clause
Error in group by clause ::
I want make records unique in MS sql.here i have used 2-3 tables join and when clause.
it is more difficult to make it distinct by using group by clause it gives error ...
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 ...