The field cookingMethod is varchar. When I pass the number parameter: in(3,4) why do I get this result?
SELECT distinct(cookingMethod) FROM recipe where cookingMethod in(3, 4);
Result: [3][3,5][3,4][4][4,5]
and if I use ('3','4'), the result is only '3','4'?
SELECT distinct(cookingMethod) FROM recipe where cookingMethod in('3', '4')
Result: [3][4]
