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

  1. #1

    Default Repeating Queries

    There must be a more efficient way of producing the attached repeating code:


    Any help would be appreciated
    pwizzard Guest

  2. Similar Questions and Discussions

    1. Repeating Geometry
      In a 3D scene I'm working on I've got a banister with repeating posts (all instances of one model). When I import this scene into director, the...
    2. Queries Of Queries Single Quote Problem
      When using queries of queries I'm having the following issue. Select Company_ID From qry_MyQuery Where Company_NM = 'MyString''s' <----...
    3. Non-repeating items
      Hi, Lets say I connected to an Access database and created an sql and then created a drop down list. <% strSQL = "SELECT...
    4. Repeating Fields
      I'm not sure if I should be using repeating fields or what, but here is the problem..... I've created a db which houses all ot the parts I can...
    5. Repeating Region
      Hello all, I have a repeating region for a navigation bar. (Link | Link | Link) The repeating region looks like this: <REPEAT BEGIN><EDITABLE...
  3. #2

    Default Re: Repeating Queries

    select etc
    from etc
    where tblMatches.group in ('A', 'B'. 'C')
    Dan Bracuk 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