bavs Posted November 9, 2005 Share Posted November 9, 2005 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 More sharing options...
Cook Posted November 9, 2005 Share Posted November 9, 2005 Frankly having a list of categories separated by commas is not the best db design you could imagine. Anyway try this one (provided there's no spaces between the cat numbers and the commas): select count(*) from `clients` where `category` like '%,12,%' Link to comment https://forums.phpfreaks.com/topic/2834-select-problem/#findComment-9498 Share on other sites More sharing options...
bavs Posted November 9, 2005 Author Share Posted November 9, 2005 I agree, the design is not good but I didn't do it, just trying to work with it. where category like '%,12,%' does not work because it doesn't pick up rows where 12 is first number or only number. Link to comment https://forums.phpfreaks.com/topic/2834-select-problem/#findComment-9499 Share on other sites More sharing options...
Cook Posted November 9, 2005 Share Posted November 9, 2005 [!--sql--][div class=\'sqltop\']SQL[/div][div class=\'sqlmain\'][!--sql1--][span style=\'color:blue;font-weight:bold\']select[/span] count(*) from `clients` where `category` like '%,12,%' or `category` like '12,%' or `category` like '%,12' [!--sql2--][/div][!--sql3--] Link to comment https://forums.phpfreaks.com/topic/2834-select-problem/#findComment-9500 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.