Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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. ...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139