Ask a Question related to Coldfusion Database Access, Design and Development.
-
Ad Bec #1
Select query
I would like to perform select on the following two tables,
tblPoll
PollID
tblPollResults
PollID
AnswerID
UserID
I want to select all the distinct PollID's that the UserID didn't answer.
What would be the most efficient SQL for this?
thanks!
Ad Bec Guest
-
help with a SELECT query
Hi all, I have tables with columns names containing dots and I'm trying to build up queries as in: select it.n.cuore.1.lemma from a027; But I... -
Query of Query to select a title first letter
The column "title" exists in a normal query. Need to select the first letter of the titles to build a list for a prev-next alphabetical search. ... -
select query help
Dear This is the sample data! Plase give me the solution. I tried my level best to solve this query but failed to do so. Thanks in advance... -
Using < and > in a select query
I am trying to write a select query to recieve results between two date ranges i have got these lines in my cfquery tag (example): and... -
problem with the select query
Hi people, this is my first mail to the group. i am having a problem with the select query. There are a few values in few columns of a table with... -
zoeski80 #2
Re: Select query
See attached code
HTH
get all the PollIDs not associated with #UserID#
SELECT PollID
FROM tblPoll
WHERE NOT PollID IN (
SELECT PollID
FROM tblPollResults
WHERE UserID = #UserID#
)
get all the PollIDs not associated with any UserID
SELECT PollID
FROM tblPoll
WHERE NOT PollID IN (
SELECT PollID
FROM tblPollResults
)
tblPoll shoulnd't have any duplicate entries so the results will be DISTINCT.
zoeski80 Guest
-
mxstu #3
Re: Select query
What is the most efficient can be affected by a number of factors (db type, indexes, etc).
1) Post the queris you have tried so far
2) What determines "he UserID didn't answer"?
mxstu Guest



Reply With Quote

