0
votes
1answer
244 views
Hibernate hql problem using case keyword
Hello!
I really need help regarding this one.
Here is the code snippet:
hSql=" select case
when min(start_day_plan) is not NULL then min(start_day_plan)
else to_date((min( …
0
votes
1answer
32 views
Interbase SQL SELECT query using CASE
I'm running the following query against a .gdb-file:
SELECT CASE USERS.USERID WHEN 1 THEN 'God' ELSE 'Somebody else' END FROM USERS;
However, running essentially the same query …
0
votes
1answer
27 views
IReport Case in Variable
I write this code in one variable in the IReport :
$F{wbsWbkRef.wbkStdRef.stdBlRtntp.blCode} != null ?
ReportUtil.getFirstEntity($P{JPA_ENTITY_MANAGER},
"SELECT "+
"CASE WHEN …
5
votes
5answers
405 views
How can I have lowercase routes in ASP.NET MVC?
How can I have lowercase, plus underscore if possible, routes in ASP.NET MVC? So that I would have /dinners/details/2 call DinnersController.Details(2) and, if possible, /dinners/m …
2
votes
3answers
169 views
How can I invert the case of a String in Java?
I want to change a String so that all the uppercase characters become lowercase, and all the lower case characters become uppercase. Number characters are just ignored.
so "AbCdE1 …
2
votes
3answers
222 views
SQL Server Where Clause Case Statement?
I have a Where Clause that checks the existence of rows in a subquery, but I only want to execute that check if a bit is set to 1. So for example:
Select * from Listing l
Where
l …
1
vote
2answers
56 views
Bash Case menu - dynamic choices
Hi guys,
I'm not sure what the policy is here on asking followup questions. So please excuse me if i'm breaking protocol. Earlier I was constructing a menu in bash ( Here )
And …
0
votes
0answers
21 views
Generated Doctrine models respect case, but generated Yaml does not
Just getting started with Doctrine ORM for PHP (v1.1.5) and ran into something unexpected.
I am generating models from the db (MySQL 4) using:
Doctrine::generateModelsFromDb($pat …
0
votes
4answers
51 views
in sqlserver, need to select one of two columns, can a case statment do this?
My table:
Users (userID, col1, col2)
I want to make a generic stored procedure, but I need to return EITHER col1 or col2 in a query.
Can I case statement handle this situation?
…
0
votes
1answer
59 views
How to write SSIS switch/case expression?
Hi,
This is a SQL Server Integration Services (SSIS) expressions question (I'm pretty new to it).
I would like to write a switch/case expression in a Derived Column transform - …
2
votes
2answers
43 views
Why are parenscript functions changed to all lowercase?
When using parenscript if I execute
(parenscript:ps
(slot-value ($ "#mytextarea") 'selectionStart))
It produces the javascript
$('#mytextarea').selectionstart;
Note that …
0
votes
1answer
52 views
I want to have a SQL computed column according to rules
Hi all!
I want to be able to store a decimal value in one column, and in the other column to store an int that represents the option (will explain):
should be base -%
should be …
0
votes
2answers
65 views
MySQL CASE “Else Case When” is executing when the precondition is true - what am I missing?
I have a table that, due to the third party system we are using, sometimes has duplicate data. Since the model uses an EAV method there's no way to filter this the "right" way, so …
0
votes
1answer
27 views
How much statement can be made conditional in MySQL?
Hi, the MySQL manual says that a CASE statement (the WHEN part) can contain a statement_list.
How much statement is that to be exact? I need to perform a pretty big query which I …
2
votes
3answers
521 views
[Django Templates] How to get ‘switch-case’ statement functionality in Django templates?
Hi,
I found a link to have a 'switch' tag in Django templates, but I was wondering if this can be somehow achieved without it. Using only the stuff which comes with Django? Basical …
