我正在尝试在两个表之间加入一个具有一个值的列和具有多个值的另一列。
For ex. table1 column varieties table2 Items
Fruits vegetables,spinach,fruits
Vegetable
Spinach
有什么办法可以加入这样的:
select * from table1 t1 left join table2 t2 on t1.varieties in t2.items
提前致谢