select id from product_catalog where parent_id in(parent_id ,getAllparentlist(parentID)) ;
select id from product_catalog where find_in_set(parent_id ,getAllparentlist(parentID))
getAllparentlist()结果是获取子集例如: '$,101,102,103';
在确定使用in时有比较过两个方法;自己做的测试 结果时find_in_set 查出来的数据不如in完整,
但是在运用过程中
用in总是把所有的数据都查出来
而用find_in_set时却是部分数据 不是很明白这两个方法的区别