Ask a Question related to Coldfusion Database Access, Design and Development.
-
sweller29 #1
Help with a query
Hey, can someone tell me why the query below does not work correctly. It should
select all records where the "gemsid" does not exist in the subquery?
Select gemsid,
max(decode(tng_sys_nr,0299,emp_tng_stt_dt)) as class1,
max(decode(tng_sys_nr,0146,emp_tng_stt_dt)) as class2,
max(decode(tng_sys_nr,0288,emp_tng_stt_dt)) as class3,
max(decode(tng_sys_nr,0457,emp_tng_stt_dt)) as class4
from comp_trng
where gemsid not in
(
select gemsid
from ll_records
where moduleid = 15
)
group by gemsid
sweller29 Guest
-
Query of Queries on query New type query
In CF5 we have a page that creates a query, using queryNew and querySetCell and the like, we then used dbtype="query" and gave it's name so we could... -
query of query throwing weird exception
One workaround: I had added rows to a cfsearch query, and set a numeric value in custom1 field that that query provides. A query of queries... -
Convert a query to a list, or find an item in a query
Hi All, I am using CFPOP to retrieve mail from a server, then delete each message after I retrieve it. What I want to do is to check that I don;t... -
CAML Query: Multiple Query Fields Issue
I need to Create a CAML Query Dynamically with VB to a Sharepoint WebService GetListItems Method. The User Could Select 1 to X Number of IDs... -
BCP query out executed by xp_cmdshell works fine from query analyzer but fails from VB Component
Hi all, I have a stored procedure which returns a vast number of record and i have to write the output into a csv file. I'm using BCP utility to... -
paross1 #2
Re: Help with a query
What is it doing instead, returning some of the expected records, returning unexpected records, returning no records, giving you an error?
Phil
paross1 Guest
-
sweller29 #3
Re: Help with a query
It's returning all records that fit the first query, whether or not gemsid is in the second query.
sweller29 Guest
-
EndoplasmicReticulum #4
Re: Help with a query
Try this: Select gemsid, max(decode(tng_sys_nr,0299,emp_tng_stt_dt)) as
class1, max(decode(tng_sys_nr,0146,emp_tng_stt_dt)) as class2,
max(decode(tng_sys_nr,0288,emp_tng_stt_dt)) as class3,
max(decode(tng_sys_nr,0457,emp_tng_stt_dt)) as class4 from comp_trng as t1
where gemsid not in ( select gemsid from ll_records where t1.gemsid =
ll_records.gemsid and moduleid = 15 ) group by gemsid
EndoplasmicReticulum Guest
-
sweller29 #5
Re: Help with a query
endoplasmic,
I tried that, but received a sql command not ended properly error. I changed "from comp_trng as t1" to "from comp_trng t1" and got the same result set. Any other ideas?
sweller29 Guest
-
sweller29 #6
Re: Help with a query
Someone in the office has helped me out. Added a rtrim() to the query and it
works fine. Seems there was extra space in one of the tables.
Select gemsid,
max(decode(tng_sys_nr,0299,emp_tng_stt_dt)) as class1,
max(decode(tng_sys_nr,0146,emp_tng_stt_dt)) as class2,
max(decode(tng_sys_nr,0288,emp_tng_stt_dt)) as class3,
max(decode(tng_sys_nr,0457,emp_tng_stt_dt)) as class4
from comp_trng
where rtrim(gemsid) not in
(
select gemsid
from ll_records
where moduleid = 15
)
group by gemsid
sweller29 Guest



Reply With Quote

