1267 - Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8mb4_general_ci,COERCIBLE) for operation 'like'
select count(distinct p.products_id) as total from products p left join manufacturers m using(manufacturers_id) left join specials s on p.products_id = s.products_id, products_description pd where p.products_status = '1' and p.products_id = pd.products_id and pd.language_id = '1' and p.products_free_gift_status = '0' and p.products_third_party_status = '0' and (p.products_date_available < now() or p.products_date_available IS NULL) and ((pd.products_name like "%大場翔太%" or p.products_model like "%大場翔太%" or m.manufacturers_name like "%大場翔太%" or p.products_id in (select products_id from products_attributes where options_sku = "大場翔太" or options_barcode = "大場翔太") or pd.products_description like "%大場翔太%") )