SELECT 
  cscart_categories.category_id, 
  cscart_categories.parent_id, 
  cscart_categories.id_path, 
  cscart_category_descriptions.category, 
  cscart_categories.position, 
  cscart_categories.status, 
  cscart_categories.company_id, 
  cscart_categories.storefront_id, 
  cscart_categories.product_count, 
  cscart_seo_names.name as seo_name, 
  cscart_seo_names.path as seo_path 
FROM 
  cscart_categories 
  LEFT JOIN cscart_category_descriptions ON cscart_categories.category_id = cscart_category_descriptions.category_id 
  AND cscart_category_descriptions.lang_code = 'en' 
  LEFT JOIN cscart_seo_names ON cscart_seo_names.object_id = cscart_categories.category_id 
  AND cscart_seo_names.type = 'c' 
  AND cscart_seo_names.dispatch = '' 
  AND cscart_seo_names.lang_code = 'en' 
WHERE 
  1 = 1 
  AND (
    cscart_categories.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, cscart_categories.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, cscart_categories.usergroup_ids
    )
  ) 
  AND cscart_categories.status IN ('A') 
  AND cscart_categories.id_path LIKE '5684/5699/5709/%' 
  AND cscart_categories.storefront_id IN (0, 1) 
ORDER BY 
  cscart_categories.is_trash asc, 
  cscart_categories.position asc, 
  cscart_category_descriptions.category asc

Query time 0.00214

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "24.18"
    },
    "ordering_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "nested_loop": [
        {
          "table": {
            "table_name": "cscart_categories",
            "access_type": "range",
            "possible_keys": [
              "c_status",
              "id_path"
            ],
            "key": "id_path",
            "used_key_parts": [
              "id_path"
            ],
            "key_length": "767",
            "rows_examined_per_scan": 16,
            "rows_produced_per_join": 0,
            "filtered": "2.00",
            "index_condition": "(`webmarco`.`cscart_categories`.`id_path` like '5684/5699/5709/%')",
            "cost_info": {
              "read_cost": "23.35",
              "eval_cost": "0.06",
              "prefix_cost": "23.41",
              "data_read_per_join": "1K"
            },
            "used_columns": [
              "category_id",
              "parent_id",
              "id_path",
              "company_id",
              "usergroup_ids",
              "status",
              "product_count",
              "position",
              "is_trash",
              "storefront_id"
            ],
            "attached_condition": "(((`webmarco`.`cscart_categories`.`usergroup_ids` = '') or find_in_set(0,`webmarco`.`cscart_categories`.`usergroup_ids`) or find_in_set(1,`webmarco`.`cscart_categories`.`usergroup_ids`)) and (`webmarco`.`cscart_categories`.`status` = 'A') and (`webmarco`.`cscart_categories`.`storefront_id` in (0,1)))"
          }
        },
        {
          "table": {
            "table_name": "cscart_category_descriptions",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "category_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "webmarco.cscart_categories.category_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.32",
              "eval_cost": "0.06",
              "prefix_cost": "23.79",
              "data_read_per_join": "1K"
            },
            "used_columns": [
              "category_id",
              "lang_code",
              "category"
            ]
          }
        },
        {
          "table": {
            "table_name": "cscart_seo_names",
            "access_type": "ref",
            "possible_keys": [
              "PRIMARY",
              "dispatch"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "object_id",
              "type",
              "dispatch",
              "lang_code"
            ],
            "key_length": "206",
            "ref": [
              "webmarco.cscart_categories.category_id",
              "const",
              "const",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.32",
              "eval_cost": "0.06",
              "prefix_cost": "24.18",
              "data_read_per_join": "555"
            },
            "used_columns": [
              "name",
              "object_id",
              "company_id",
              "type",
              "dispatch",
              "path",
              "lang_code"
            ]
          }
        }
      ]
    }
  }
}

Result

category_id parent_id id_path category position status company_id storefront_id product_count seo_name seo_path
5750 5709 5684/5699/5709/5750 Baseball & Softball Bases & Plates 10 A 0 0 0 baseball-and-softball-bases-and-plates 5684/5699/5709
5916 5885 5684/5699/5709/5885/5916 Baseball & Softball Batting Helmets 10 A 0 0 0 baseball-and-softball-batting-helmets 5684/5699/5709/5885
5935 5885 5684/5699/5709/5885/5935 Baseball & Softball Chest Protectors 20 A 0 0 0 baseball-and-softball-chest-protectors 5684/5699/5709/5885
5791 5709 5684/5699/5709/5791 Baseball & Softball Batting Gloves 20 A 0 0 0 baseball-and-softball-batting-gloves 5684/5699/5709
5824 5709 5684/5699/5709/5824 Baseball & Softball Gloves & Mitts 30 A 0 0 0 baseball-and-softball-gloves-and-mitts 5684/5699/5709
5955 5885 5684/5699/5709/5885/5955 Baseball & Softball Leg Guards 30 A 0 0 0 baseball-and-softball-leg-guards 5684/5699/5709/5885
5849 5709 5684/5699/5709/5849 Baseball & Softball Pitching Mats 40 A 0 0 0 baseball-and-softball-pitching-mats 5684/5699/5709
5987 5885 5684/5699/5709/5885/5987 Catchers Helmets & Masks 40 A 0 0 0 catchers-equipment-sets 5684/5699/5709/5885
5873 5709 5684/5699/5709/5873 Baseball & Softball Pitching Mounds 50 A 0 0 0 baseball-and-softball-pitching-mounds 5684/5699/5709
9032 5885 5684/5699/5709/5885/9032 Catchers Equipment Sets 50 A 0 0 0 catchers-equipment-sets-en 5684/5699/5709/5885
5885 5709 5684/5699/5709/5885 Baseball & Softball Protective Gear 60 A 0 0 0 baseball-and-softball-protective-gear 5684/5699/5709
6056 5709 5684/5699/5709/6056 Baseball Bats 70 A 0 0 0 baseball-bats 5684/5699/5709
6088 5709 5684/5699/5709/6088 Baseballs 80 A 0 0 0 baseballs 5684/5699/5709
6118 5709 5684/5699/5709/6118 Pitching Machines 90 A 0 0 0 pitching-machines 5684/5699/5709
6149 5709 5684/5699/5709/6149 Softball Bats 100 A 0 0 0 softball-bats 5684/5699/5709
6177 5709 5684/5699/5709/6177 Softballs 110 A 0 0 0 softballs 5684/5699/5709