I Need help writing a query

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

  1. #1

    Default I Need help writing a query

    I hope I give enough information for my delimma. I have an ACCESS database
    with 3 tables: -Client (clientid, name) -ClientClosedDates (clientid, date)
    - contains the date that the client is NOT avaialble -Event (date, eventName)
    What I am having trouble with is writing an ACCESS SQL statement that will list
    only the Clients that are not closed out for a particular event. e.g. I give a
    date in the event table and the result is a list of all available clients.
    Please help. Thanks Charles:confused;

    charlese Guest

  2. Similar Questions and Discussions

    1. mySQL query writing problem
      I have a table with a dozen or so fields. I am trying to return all 12 fields in all records that contain an entry in the field named 'week'. This...
    2. Writing Query for data range does not output
      The cfoutput tag for this query does not display any data. SELECT Title, SVNo, RevNo, FileName, Type, ReleaseDate, Platform, PCNs,...
    3. 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...
    4. Writing SQL query without subselect
      I'm stuck on a host that is still running MYSQL version 3. I need to flatten out a relationship to AND a set of criteria. In a nutshell User...
    5. 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...
  3. #2

    Default Re: I Need help writing a query

    SELECT client.clientid, client.name
    FROM Client
    INNER JOIN ClientClosedDates
    ON Client.clientid = ClientClosedDates.clientID
    WHERE ClientClosedDates.date <> #form.whateverdate#

    Tulsa 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