Search Results

4
votes

Syntax Error

I think you're missing the statement that you want to evaluate in the CASE statement. update oildatasetstatus set oildatasetstatusid = case oildatasetstatusid WHEN 5 THEN 16 WH …
9
votes

How do you use cfqueryparam in the ORDER BY clause?

Unfortunately, you can't use CFQUERYPARAM directly in the Order By clause. If you want to use the Order By dynamically but still do so safely, you can set up a CFSWITCH or similar structure …
0
votes

SQL Select Question

If I'm reading your problem right, it appears that you have a text field that contains date-like data, and you want to be able to sort on it chronologically (within a range). After some qui …