Hello I have a table with articles and the articles have a column category. The categories are filled like 1,4,6,8
How can i check if there is a product which has in it for example category 5
I tried something like
select * from article where category in(5);
But that doesn't work. If I use like than i will have a problem with for example 1 and 10. So how can I do this in one mysql query?