May 19 2021 07:22 AM
I have two tables and Table "A" has a list of error messages while Table "B" has a list of keywords. Is there any way to return a list of those error messages from Table A that a contain a keyword from Table "B". Something like:
A join B on $left.ErrorMessage contains $B.Keyword
May 19 2021 10:19 AM
May 19 2021 12:46 PM
May 19 2021 02:07 PM
May 21 2021 05:26 AM
@Gary Bushey I have it working but not sure if it is the best way to do it. First, I add a dummy column to each table that contains the same value, then I do a full outer join on the two tables using those new columns. Since I just need to get a count of the matching items I can do
summarize countif(TableBcolumn contains TableAcolumn) by TableAcolumn