标签: mysql performance-testing query-performance
查询:
select `id` from `table2` where `id` IN (select `column2` from `table1` where `column1`=1)
到目前为止,我找到了以下解决方法,
find_in_set()
由于find_in_set是不可攻击的,我正在寻找一种解决方案,我可以在一个查询中执行此操作。
find_in_set