Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Verwenden Sie LIKE %..% mit Feldwerten in MySQL

Verwendung:

SELECT t1.Notes, 
       t2.Name
  FROM Table1 t1
  JOIN Table2 t2 ON t1.Notes LIKE CONCAT('%', t2.Name ,'%')