セットタイプについていくつか質問find_in_set
があります。コードは次のとおりです。
create table set_test(id int,set_col SET('a','b','c','d'));
insert into set_test(id,set_col) values(1,'a,b'),(2,'a,b,b');
select * from set_test where find_in_set('a,b',set_col)
空のセットを返します!!! なぜ?