No, not at all.
SELECT * FROM table WHERE NOT EXISTS (
SELECT * from anothertable WHERE field LIKE CONCAT('%',value,'%')
)
probably do it. Assuming what valueis a column on table, but fieldis a corresponding column on anothertable, which may or may not contain valueas a substring.
, , anothertable . , , . MySQL anothertable table.