Assuming you can use nested SELECTs then I think this syntax would
work...
SELECT DISTINCT(table_a.string) from table_a WHERE table_a.string NOT
IN (SELECT DISTINCT(string) FROM table_b) AND table_a.string NOT IN
(SELECT DISTINCT(string) FROM table_c);