SELECT 
  jmj_categories.category_id, 
  jmj_categories.parent_id, 
  jmj_categories.id_path, 
  jmj_category_descriptions.category, 
  jmj_categories.position, 
  jmj_categories.status, 
  jmj_categories.company_id, 
  jmj_categories.storefront_id, 
  jmj_categories.ab__lc_catalog_image_control 
FROM 
  jmj_categories 
  LEFT JOIN jmj_category_descriptions ON jmj_categories.category_id = jmj_category_descriptions.category_id 
  AND jmj_category_descriptions.lang_code = 'en' 
WHERE 
  1 = 1 
  AND (
    jmj_categories.usergroup_ids = '' 
    OR FIND_IN_SET(0, jmj_categories.usergroup_ids) 
    OR FIND_IN_SET(1, jmj_categories.usergroup_ids)
  ) 
  AND jmj_categories.status IN ('A') 
  AND jmj_categories.id_path LIKE '78/%' 
  AND jmj_categories.category_id != 1 
  AND jmj_categories.parent_id != 1 
  AND jmj_categories.storefront_id IN (0, 1) 
ORDER BY 
  jmj_categories.is_trash asc, 
  jmj_categories.position asc, 
  jmj_category_descriptions.category asc

Query time 0.00142

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "26.64"
    },
    "ordering_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "nested_loop": [
        {
          "table": {
            "table_name": "jmj_categories",
            "access_type": "range",
            "possible_keys": [
              "PRIMARY",
              "c_status",
              "parent",
              "id_path",
              "p_category_id"
            ],
            "key": "id_path",
            "used_key_parts": [
              "id_path"
            ],
            "key_length": "767",
            "rows_examined_per_scan": 18,
            "rows_produced_per_join": 0,
            "filtered": "2.00",
            "index_condition": "(`jmj_test`.`jmj_categories`.`id_path` like '78/%')",
            "cost_info": {
              "read_cost": "26.14",
              "eval_cost": "0.07",
              "prefix_cost": "26.21",
              "data_read_per_join": "1K"
            },
            "used_columns": [
              "category_id",
              "parent_id",
              "id_path",
              "company_id",
              "usergroup_ids",
              "status",
              "position",
              "is_trash",
              "ab__lc_catalog_image_control",
              "storefront_id"
            ],
            "attached_condition": "(((`jmj_test`.`jmj_categories`.`usergroup_ids` = '') or find_in_set(0,`jmj_test`.`jmj_categories`.`usergroup_ids`) or find_in_set(1,`jmj_test`.`jmj_categories`.`usergroup_ids`)) and (`jmj_test`.`jmj_categories`.`status` = 'A') and (`jmj_test`.`jmj_categories`.`category_id` <> 1) and (`jmj_test`.`jmj_categories`.`parent_id` <> 1) and (`jmj_test`.`jmj_categories`.`storefront_id` in (0,1)))"
          }
        },
        {
          "table": {
            "table_name": "jmj_category_descriptions",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "category_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "jmj_test.jmj_categories.category_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.36",
              "eval_cost": "0.07",
              "prefix_cost": "26.64",
              "data_read_per_join": "1K"
            },
            "used_columns": [
              "category_id",
              "lang_code",
              "category"
            ]
          }
        }
      ]
    }
  }
}

Result

category_id parent_id id_path category position status company_id storefront_id ab__lc_catalog_image_control
109 80 78/80/109 Jeans 10 A 0 0 none
88 79 78/79/88 kurta 10 A 0 0 none
116 81 78/81/116 Kurta 10 A 0 0 none
79 78 78/79 Top Wear 10 A 0 0 none
80 78 78/80 Bottom Wear 20 A 0 0 none
117 81 78/81/117 Kurta Sets 20 A 0 0 none
110 80 78/80/110 Trousers 20 A 0 0 none
111 80 78/80/111 Capris 30 A 0 0 none
81 78 78/81 Ethnic Wear 30 A 0 0 none
118 81 78/81/118 Kurtis 30 A 0 0 none
119 81 78/81/119 Leggings 40 A 0 0 none
112 80 78/80/112 Shorts 40 A 0 0 none
120 81 78/81/120 Palazzos 50 A 0 0 none
113 80 78/80/113 Skirts 50 A 0 0 none
114 80 78/80/114 Dungarees 60 A 0 0 none
121 81 78/81/121 Lehenga Cholis 60 A 0 0 none
115 80 78/80/115 Track Pants 70 A 0 0 none
122 81 78/81/122 Gowns 70 A 0 0 none