違いはありますか (インデックスの選択? 速度?):
select * from table where x = 'a' or x = 'b'
対
select * from table where find_in_set(x, 'a,b')
それらのいずれかを使用する必要がありますか、それとも等しいですか?
違いはありますか (インデックスの選択? 速度?):
select * from table where x = 'a' or x = 'b'
対
select * from table where find_in_set(x, 'a,b')
それらのいずれかを使用する必要がありますか、それとも等しいですか?