Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようなものが必要です:
SELECT * FROM Table1 WHERE Name LIKE %Table2.Name%
select <col list> from table1 t1 inner join table2 t2 on t1.name like concat('%', t2.name, '%')
共通のフィールドがある場合、2 つのテーブル間で結合を使用できます。