Skip to content
Advertisement

Fix Join table functions or not duplicate values?

So I have a query in NaviCat, it has a part that looks like this:

As the Base table has the Identifier Number, but does not contain the Names of the person. It is connected properly and works. However, It is tripling some rows in certain cases.

I can get a response back that looks similar to this

I would like it to only return the longest entry (as all the Names are either Husband, Wife, or Husband & Wife), as all the amounts are the same and I think it is because I am left joining the Base table to the Table1, Table2, etc. But how can I fix this? Is there a function to only return the longest Name?

I am looking at a few left joins similar to this.

each table1-table4 has the same join code.

Advertisement

Answer

I can only provide a “raw” SQL solution, as I never used NaviCat.
Below solution assumes that for every Identifier in any of table1table4, the Amount and the Date values are the same.
Your FROM should be changed like this:

and your case expression becomes only

and the same applies to Amount, if it is needed in the end result (no case necessary).

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