Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Speegs #1
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
-
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... -
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... -
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... -
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... -
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... -
Tom Muck #2
Re: Query 5 Tables
"Speegs" <webforumsuser@macromedia.com> wrote in message
news:d1f8cg$ior$1@forums.macromedia.com...values are => 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 emailWhat database? Equal to what? In SQL Server, I would do somethign like this:> ???
> Speegs
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



Reply With Quote

