Tagged Questions
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
1answer
37 views
Creation of view with case when statement
Please refer to my example below for clearer understanding of what i'm doing.
Example:
Create View v AS
Select T.*, S.Name, Case When T.TESTDATE = S.STUDYDATE
Then 'Yes' else 'No' END AS TakenTest
...
1
vote
2answers
244 views
CASE in ORDER BY few columns
Using a case-then block, I need to choose how to order my SQL 2008 query, by [status] ASC, [date] DESC or just [date] DESC.
I know only how to use one column:
SELECT *
FROM table
ORDER BY
CASE ...
0
votes
1answer
22 views
MYSQL Select As Case when number of rows statement
I'm trying to find the number of notifications for each user, I am having a little problem, I had the query working perfect for what I needed it for, then I changed my table around just a little bit.
...
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
1answer
193 views
Using CASE, WHEN, THEN, END in a select query with MySQL
I'm working on a baseball related website. I have a table with a batting lineup for two baseball teams:
+----+----------+--------------+--------+
| id | playerId | battingOrder | active |
...