Tagged Questions
2
votes
2answers
44 views
Conditional value replacement in SQL Server
I have a table that has several columns. The value of one column is 0 or 1. I want to write a query that returns "Hello" if the value was 0, or "Bye" if it was 1.
What is the appropriate way to write ...
1
vote
3answers
514 views
SQL Server - How to switch between 2 possible SELECT statements
I would like to use a parameter in my mssql stored procedures to switch between a small and a detailed result (for maintainability, performance and network load reasons).
If parameter is set to 1 i ...
0
votes
2answers
740 views
Dropdown list with a “Select All” option
I have three dropdown boxes, Region, District, and City. I want my District dropdown to have a "Select All" option so the user can get all Cities in the Region, else just display the City based on ...
0
votes
4answers
492 views
Multiple Select Statements within IF
I could use some help to write a prog./sql construct for a report..
The Sql should first check for the prompt & then decide which "select" statements should run
something like (pseudo-code)
...