Skip to content
Advertisement

Does a Self Join or EXISTS Help here?

I’m Using Advantage Server 12. I need a result set that finds all the records when the supplied parameter occurs in either of a master or a detail table when the supplied value is not the linking field.

Customer Table

N < 2

Contact Table

N >=0

Require the Row from Customer and All rows with matching ACODE from Contacts. When Tel1 or Tel2 or Tel3 or cTel1 or cTel2 or cTel3 is supplied

This SQL gives the required result when the supplied value (‘thenumber’) is found in any of the Customer fields When the supplied number is found in the contact table it returns the Customer fields and only data from the matching row in Contacts

Result when ‘thenumber’ is found in Customer – This is what we want

Result when ‘thenumber’ is found in Contacts – We want the same result set as above

I’m thinking either some self join or EXISTS statement is the answer but not sure how to proceed.

Advertisement

Answer

This should achieve what you want:

(I’ll leave you to work out how to add the Tel3 🙂

Note that I have changed your full outer join to a simple left join because the code as presented will not work with customerless contacts.

If you really need a full outer join, the code becomes a bit more convoluted:

I have modified Christophe’s DB-fiddle to show this working.

Note that the solution for the full outer join is slightly different in the fiddle, to cope with the different behaviour of Microsoft SQL server compared to the Advantage database server. (With ADS DBF tables, NULL values in an integer field become zeros in the UNION for example).

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement