Hello, here is my question. I have two table. The first table is like a glossary. The second table is the input data.
Table 1 (glossary)
Number Fruit
1-1 banana;apple <= (meaning can be either banana or apple)
1-2 orange
Table 2 (Input data)
Number Fruit
1-1 banana
1-1 apple
So my goal is to see if table 2 match with table 1.
I have a input data (table 2). Both are number 1-1 and the fruit name also match with table 1. Hence, both the result should be passed.
However, I am not sure how to do the matching. As the table 1 fruit name is "banana;apple", separating by ";".
I would like to have some guidance.
Thank you very much!