mysql 需要查询包含字符串的条件,怎么写?

** 问题
表记录如下:**
表A(a_id,a_bcontent),a_id是主键,有三条数据,分别是
A1 , 111,222,333,444,555
A2 , 111,444
A3 , 222,555
需要查询出包含 A2记录的a_bcontent中的111或者444的记录。
用like、in、find_in_set都不行,请高手指点。。。
这个sql怎么写?

 DROP TABLE test_product;
CREATE TABLE test_product(id int(6) NOT NULL AUTO_INCREMENT,PRIMARY KEY (id),pname VARCHAR(20) NOT NULL,pnum VARCHAR(50) NOT NULL);
INSERT INTO test_product(pname,pnum) VALUES('product1','1,2,4');
INSERT INTO test_product(pname,pnum) VALUES('product2','2,4,7');
INSERT INTO test_product(pname,pnum) VALUES('product3','3,4');
INSERT INTO test_product(pname,pnum) VALUES('product14','1,7,8,9');
INSERT INTO test_product(pname,pnum) VALUES('product15','33,4');
INSERT INTO test_product(pname,pnum) VALUES('产品2342','33,4');

SELECT * FROM test_product WHERE find_in_set('33',pnum) OR find_in_set('9',pnum);

select * from text where a_bcontent like concat ('%',111,'%') or a_bcontent like concat ('%',444,'%')