Jump to content

select problem


bavs

Recommended Posts

I am trying to create a select statement and keep running into problems

 

I have a table with columns

id int

client text

category text

 

Category contains a list of ids so examples are

 

1,3,12,16,20

12,25,17,122

23,122

12

 

I am trying to count the number of rows that contain a number in the category ie contain 12 and I expect to get 3 rows but can't get it to work

 

select count(*)

from clients

where category in ('12')

 

only returns 1 but

 

where category like '%12%' returns 4

 

I'm stuck, please help.

 

Link to comment
https://forums.phpfreaks.com/topic/2834-select-problem/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.