Selecting one particular field in the same Access database table?

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Selecting one particular field in the same Access database table?

    Is there a way of selecting one particular field in the same Access
    database table?
    eg. database is -

    ID: 1 2
    Region: Alsace Alsace
    Dept: Bas-Rhin Haut-Rhin

    and I just want to use Haut-Rhin placed in a cell on a table ???

    Many thanks

    Craig.


    Craig Guest

  2. Similar Questions and Discussions

    1. Database table field (image) says: 1073741823 required
      Can anyone explain what 1073741823 required means in reference to an image contained in an access database table? I am trying to show a series of...
    2. querying field / column names in Access table
      I got great info on my last post, so let's try this one and see if my luck is still good: I have an Access table with about 30+ columns / fields...
    3. Get database field names from table...
      How do you get the database fieldnames from a table and display them using cfquery and cfoutput. Thanks a million...
    4. Selecting fixed amount of characters from a "memo" fieldin an access database
      How would I do this? I don't care but preferably I would like to accomplish this IN the query. But probably it will have to be done after the data...
    5. adding a hyperlink to a field in a table created from a d/b query (Access)
      I've done this using Frontpage; and I know I've done it in the past using just ASP. I'm trying to stay away from FP on this site, so.... Can...
  3. #2

    Default Re: Selecting one particular field in the same Access database table?

    Try some SQL like

    select * from t where Dept='Haut-Rhin'

    --
    Jules
    [url]http://www.charon.co.uk/charoncart[/url]
    Charon Cart 3
    Shopping Cart Extension for Dreamweaver MX/MX 2004



    Julian Roberts Guest

  4. #3

    Default Re: Selecting one particular field in the same Access database table?

    Hi

    Sorry, couldn't get your code to work.
    This is what I have so far,
    but I can only get it to display the first Dept from the first row of the
    Access Table -

    SELECT *
    FROM AtoZ
    WHERE Dept

    Any idea's, what it might have to be to get to the second one 'Haut-Rhin'?

    Many thanks

    Craig.


    "Julian Roberts" <newsg@charon.co.uk> wrote in message
    news:d6l4h3$4fo$1@forums.macromedia.com...
    > Try some SQL like
    >
    > select * from t where Dept='Haut-Rhin'
    >
    > --
    > Jules
    > [url]http://www.charon.co.uk/charoncart[/url]
    > Charon Cart 3
    > Shopping Cart Extension for Dreamweaver MX/MX 2004
    >
    >
    >

    Craig 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