Ask a Question related to Coldfusion Database Access, Design and Development.
-
Anderson11983 #1
sql select case statement
Hi,
Im trying to put together a sql select case statement for coldfusion - can
anyone please check over my code and see if i am going along the right lines
syntax wise etc.
<cfquery name="getClassifiedResource" datasource="#caller.nimoirdb#">
SELECT dtn.id, dtn.name, dtn.status, dtn.site, 'true' as fsg, dtn.title,
dtn.approvalstate, dtn.found, dtn.lowest_node, 0 as child_of, -23 as replaces,
0 as languageID, dtn.iFilesize
FROM
(SELECT dtn.id, dtn.name, dtn.status, dtn.site, dtn.lowest_node, dtn.title,
dtn.approvalstate, dtn.iFileSize)
(SELECT CASE
WHEN dtx.content = 0 and dtx.approvalstate = 0 AND (appOffContext0 like
'%|' + dtx.status + '|%') THEN 1
</cfquery>
Thanks for yor help
Andy
Anderson11983 Guest
-
Select Case SQL recordset help
I was given the following SQL statement to drop into DMX and create a recordset: SELECT CASE 'allotype' CASE 'STRATEGY': strSQL = 'select... -
List in case statement
Is there a way to use a list in a case statement? Can I substitute myList = in the case statement below? case(myVar) of 1, 4, 6, 9, 11: put... -
Case Statement
HI All, I use Macromedia Director and often use case statements so that I don't have to have a separate script for each button. An Example in... -
Problems with CASE statement
Helpful folks, I seem to be misunderstanding the use of the CASE statement as used within a WHERE clause. I had thought that one could do the... -
CASE statement and CONTAINS
Hello, Is it possible to add a 'contains' clause to the 'case' command? I know I can do this: case variableName OF "foo": doThis() end case -
paross1 #2
Re: sql select case statement
I don't see any tables referenced in the FROM clause anywhere, nor can I can't
tell what you are trying to do from what you presented. Perhaps if you
explained what you were trying to do, it would help to see if you were even on
the right track, but your SQL makes no sense to me as written. Sorry.
Phil
paross1 Guest



Reply With Quote

