Hi,
I have a query that tries to find the difference between 2 tables
Table1
Deal1 100
Deal1 200
Table2
Deal1 300
The query doesn't return 600 in 1 row for Deal1. It shows Deal1 twice and displays in column for Table2 300 twice. I have done summing and grouping / place distinct in front of Deal ID in the SQL. I thought by not displaying the two columns, but just result column would resolve the issue. But the problem remains. The join is 1 ( where the match of id is equal for both table.
Thank you in advance.
I have a query that tries to find the difference between 2 tables
Table1
Deal1 100
Deal1 200
Table2
Deal1 300
The query doesn't return 600 in 1 row for Deal1. It shows Deal1 twice and displays in column for Table2 300 twice. I have done summing and grouping / place distinct in front of Deal ID in the SQL. I thought by not displaying the two columns, but just result column would resolve the issue. But the problem remains. The join is 1 ( where the match of id is equal for both table.
Thank you in advance.