I have result in MySQL
table.
I need to get result only where is only 6 not 26 in user_id not.
id users_id
15 6,5
16 1,5
18 2,8
19 1,26
20 6,26
21 5,10
22 28,6
23 21,9
24 29,6
i am using MySQL query
SELECT * FROM WHERE users_id LIKE '%6%'
Result
id user_id
15 6,5
19 1,26 why is this here..
20 6,26
22 28,6
24 29,6
result is not correct. i need only :
id user_id
15 6,5
22 28,6
24 29,6