Seeing the line "TXCLIPS.Comments Like "*" & KEYWORDS.keyword & " *"; below, is there a way to produce a distinct list of matching keywords? The last time I tried doing it another way it took too long and kept failing.
FROM TXMASTERS INNER JOIN TXCLIPS ON TXMASTERS.ID1 = TXCLIPS.ID1 INNER JOIN KEYWORDS ON TXCLIPS.Comments Like "*" & KEYWORDS.keyword & " *";
Thanks
FROM TXMASTERS INNER JOIN TXCLIPS ON TXMASTERS.ID1 = TXCLIPS.ID1 INNER JOIN KEYWORDS ON TXCLIPS.Comments Like "*" & KEYWORDS.keyword & " *";
Thanks