Hi,
I have 2 tables in database
table A: docno (PK), value1 (integer)
table B: value1 (integer and PK), value2 (PK), value3
in my tables I have entries for example:
tableA:
1000, 4
1001, 3
1002, 4
1003, 4
tableB:
4, text1, text2
4, text2, text3
3, text6, text5
3, text2, text6
A problem which I have is that when I filter from tableA docno 1000 I get all text for that docno (text1, 2, 3) and of course if I select text1 on some filter I get that text 1 is used on docno 1000, 1002, 1003.
How to solve this problem? I tried with a new table but that didn't help, tried to add column docno to my tableB and didn't help.