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

  1. #1

    Default Query 5 Tables

    Hello,
    I have five tables, each with a unique identifier 'email'
    How can I query the five tables to only show results where all the email values are =
    ???
    Speegs
    Speegs Guest

  2. Similar Questions and Discussions

    1. query mutliple tables slow
      i ran the query below and it takes ages for it to be generated. i ran it on my machine locally aswell as on my web hosting site. is it because...
    2. SQL Query Against Normal Formal Tables
      In my database, I have a table of event/activity listings (in a table called "listing" for example) that are displayed on a web site. Each listing...
    3. QUERY two tables from different databases
      We have a billing system in house that runs on a SCO box. Fortunately I'm able to use the Progress 9.1 odbc driver to generate reports only and the...
    4. SQL query with 3 tables.
      Hi, I've succesfully managed to select data from 2 tables using an inner join on the unique field. However, I now need to select data from 3...
    5. How to Query on multiple tables
      Hi, I'm new at this and having a problem on doing a query for multiple tables. Note: all tables have the same fields as well. Below is a what I...
  3. #2

    Default Re: Query 5 Tables


    "Speegs" <webforumsuser@macromedia.com> wrote in message
    news:d1f8cg$ior$1@forums.macromedia.com...
    > Hello,
    > I have five tables, each with a unique identifier 'email'
    > How can I query the five tables to only show results where all the email
    values are =
    > ???
    > Speegs
    What database? Equal to what? In SQL Server, I would do somethign like this:

    SELECT email FROM table1
    UNION
    SELECT email FROM table2
    UNION
    SELECT email FROM table3

    etc

    Save as a view, then query the view:

    SELECT email FROM myView WHERE email = '???'


    --
    -------------------------------------------
    Tom Muck
    co-author Dreamweaver MX 2004: The Complete Reference
    [url]http://www.tom-muck.com/[/url]

    Extending Knowledge, Daily
    [url]http://www.CommunityMX.com/[/url]


    Tom Muck 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