Re: using multiple subtables efficiently
From: liz lawson <news_at_charitycards.co.uk>
Date: Thu, 27 Sep 2001 11:56:32 +0100
Message-Id: <1001587958.23752.1_at_hebe.uk.clara.net>
...
OUTER JOIN a ON n.id=A.id
Date: Thu, 27 Sep 2001 11:56:32 +0100
Message-Id: <1001587958.23752.1_at_hebe.uk.clara.net>
>not post any DDL, so people trying to help you have to make stupid
>wild ass guesses about what you are doing.
>
Sorry - I'm learning using mySQL so the DDL wouldn't be appropriate (table definitions do not include relationships, foreign keys etc). ). I can see the concepts but I wouldn't be able to write the sort of DDL you are looking for - I'd get it too wrong to be any use!
Thanks
Liz
######## clarified summary of original question############
SELECT...
FROM TABLE A
OUTER JOIN a ON a.id=A.id, OUTER JOIN b ON b.id=A.id, OUTER JOIN a ON c.id=A.id, OUTER JOIN a ON d.id=A.id, OUTER JOIN a ON e.id=A.id,
...
OUTER JOIN a ON n.id=A.id
##############################################Received on Thu Sep 27 2001 - 12:56:32 CEST