Use LIKE %..% with field values in MySQL February 3, 2023 by Tarik Use: SELECT t1.Notes, t2.Name FROM Table1 t1 JOIN Table2 t2 ON t1.Notes LIKE CONCAT('%', t2.Name ,'%')