-
轉換前:select count(*) as counts from product where find_in_set(:class_id, class_id) and deleted=0 ;
-
Floor Spring FS-95 (80kg)
DETAILS POST TIME:2019-06-20
轉換后:select count(*) as counts from product where find_in_set(2, class_id) and deleted=0 ;
轉換前:select id,rid,class_id,path,title_en as title,images,images_s,orders,addtime from product where find_in_set(:class_id, class_id) and deleted=0 order by orders desc,id DESC , mdtime desc limit 9,9;
轉換后:select id,rid,class_id,path,title_en as title,images,images_s,orders,addtime from product where find_in_set(2, class_id) and deleted=0 order by orders desc,id DESC , mdtime desc limit 9,9;
轉換前:select id,product_id,images,images_s,images_name from product_photo where product_id in (351) and deleted=0 order by orders,id;
轉換后:select id,product_id,images,images_s,images_name from product_photo where product_id in (351) and deleted=0 order by orders,id;