SELECT 
  cscart_vendor_plan_descriptions.*, 
  cscart_vendor_plans.*, 
  manual_rating.rating AS manual_rating 
FROM 
  cscart_vendor_plans 
  LEFT JOIN cscart_vendor_plan_descriptions ON cscart_vendor_plan_descriptions.plan_id = cscart_vendor_plans.plan_id 
  AND cscart_vendor_plan_descriptions.lang_code = 'en' 
  LEFT JOIN cscart_manual_rating AS manual_rating ON manual_rating.object_id = cscart_vendor_plans.plan_id 
  AND manual_rating.object_type = 'vendor_plan' 
WHERE 
  (
    status IN('A')
  ) 
  AND (
    FIND_IN_SET(1, storefronts) 
    OR storefronts IS NULL 
    OR storefronts = ''
  ) 
ORDER BY 
  position asc

Query time 0.00032

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "table_name": "manual_rating",
      "access_type": "system",
      "possible_keys": ["PRIMARY"],
      "rows": 0,
      "filtered": 0,
      "const_row_not_found": true
    },
    "read_sorted_file": {
      "filesort": {
        "sort_key": "cscart_vendor_plans.position",
        "table": {
          "table_name": "cscart_vendor_plans",
          "access_type": "ALL",
          "rows": 8,
          "filtered": 100,
          "attached_condition": "cscart_vendor_plans.`status` = 'A' and (find_in_set(1,cscart_vendor_plans.storefronts) or cscart_vendor_plans.storefronts is null or cscart_vendor_plans.storefronts = '')"
        }
      }
    },
    "table": {
      "table_name": "cscart_vendor_plan_descriptions",
      "access_type": "eq_ref",
      "possible_keys": ["PRIMARY"],
      "key": "PRIMARY",
      "key_length": "10",
      "used_key_parts": ["plan_id", "lang_code"],
      "ref": ["fluentmart_cscart.cscart_vendor_plans.plan_id", "const"],
      "rows": 1,
      "filtered": 100,
      "attached_condition": "trigcond(cscart_vendor_plan_descriptions.lang_code = 'en')"
    }
  }
}

Result

plan_id lang_code plan description status position is_default price periodicity commission fixed_commission products_limit revenue_limit vendor_store categories storefronts usergroups lowers_allowed_balance grace_period_to_refill_balance manual_rating
5 en Exclusive A 0 0 200.00 month 4.50 0.00 12500 15000.00 1
6 en Silver - IN A 0 0 2000.00 month 0.00 0.00 0 0.00 0
7 en Bronz - IN A 0 0 0.00 month 0.00 0.00 0 0.00 0
8 en Extra plan - IN A 0 0 10000.00 month 20.00 0.00 0 0.00 0
2 en Bronze A 10 0 0.00 month 20.00 0.00 25 500.00 0
1 en Silver A 20 0 100.00 month 10.00 0.00 1000 1000.00 1
3 en Gold A 30 1 250.00 month 5.00 0.00 10000 10000.00 1
4 en Platinum A 40 0 1000.00 month 1.00 0.00 100000 0.00 1