× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Michael,

A rudimentary shot without testing:

SELECT 'A' AS Code, a.parent, b.id, c.child, d.id
FROM fileA a, fileB b, fileA c, fileB d
WHERE (a.parent = b.sku AND b.id = 1
AND  c.child = d.sku and d.id = 5
AND  a.parent = c.parent)
UNION
SELECT 'B' AS Code a.parent, b.id, c.child, d.id
FROM fileA a, fileB b, fileA c, fileB d
WHERE (a.parent = b.sku AND b.id = 1
AND  c.child = d.sku and d.id = 9
AND  a.parent = c.parent)
ORDER BY Code, a.parent

To get the description in you have to put in fileC twice, each with a different 
alias.

In QMQRY you can create a FORM to omit the column Code and break on the column 
a.parent.

Regards,
Carel Teijgeler




As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.