0
votes
6answers
172 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 …
1
vote
2answers
64 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
2answers
177 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.
…
