SELECT 
  categories.category_id, 
  categories.parent_id, 
  categories.id_path, 
  category_descriptions.category, 
  categories.position, 
  categories.status, 
  categories.company_id 
FROM 
  categories 
  LEFT JOIN category_descriptions ON categories.category_id = category_descriptions.category_id 
  AND category_descriptions.lang_code = 'en' 
WHERE 
  1 = 1 
  AND (
    categories.usergroup_ids = '' 
    OR FIND_IN_SET(0, categories.usergroup_ids) 
    OR FIND_IN_SET(1, categories.usergroup_ids)
  ) 
  AND categories.status IN ('A') 
  AND categories.level <= 3 
  AND categories.deleted_at IS NULL 
  AND categories.company_id = 2730 
ORDER BY 
  categories.is_trash asc, 
  categories.position asc, 
  category_descriptions.category asc

Query time 0.04443

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "1151.17"
    },
    "ordering_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "nested_loop": [
        {
          "table": {
            "table_name": "categories",
            "access_type": "ref",
            "possible_keys": [
              "c_status",
              "index_categories_on_deleted_at"
            ],
            "key": "index_categories_on_deleted_at",
            "used_key_parts": [
              "deleted_at"
            ],
            "key_length": "6",
            "ref": [
              "const"
            ],
            "rows_examined_per_scan": 10182,
            "rows_produced_per_join": 33,
            "filtered": "0.33",
            "index_condition": "(`goimagine`.`categories`.`deleted_at` is null)",
            "cost_info": {
              "read_cost": "120.75",
              "eval_cost": "3.39",
              "prefix_cost": "1138.95",
              "data_read_per_join": "88K"
            },
            "used_columns": [
              "category_id",
              "parent_id",
              "id_path",
              "level",
              "company_id",
              "usergroup_ids",
              "status",
              "position",
              "is_trash",
              "deleted_at"
            ],
            "attached_condition": "((`goimagine`.`categories`.`company_id` = 2730) and ((`goimagine`.`categories`.`usergroup_ids` = '') or (0 <> find_in_set(0,`goimagine`.`categories`.`usergroup_ids`)) or (0 <> find_in_set(1,`goimagine`.`categories`.`usergroup_ids`))) and (`goimagine`.`categories`.`status` = 'A') and (`goimagine`.`categories`.`level` <= 3))"
          }
        },
        {
          "table": {
            "table_name": "category_descriptions",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "category_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "goimagine.categories.category_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 33,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "8.82",
              "eval_cost": "3.39",
              "prefix_cost": "1151.17",
              "data_read_per_join": "154K"
            },
            "used_columns": [
              "category_id",
              "lang_code",
              "category"
            ]
          }
        }
      ]
    }
  }
}

Result

category_id parent_id id_path category position status company_id
6159 5782 5782/6159 Corresponding with book ~ The Advent Jesse Tree 0 A 2730
6157 5782 5782/6157 Corresponding with book ~ The Jesus Storybook Bible 0 A 2730
6158 5782 5782/6158 Corresponding with book ~ Unwrapping the Greatest Gift 0 A 2730
5775 5774 5774/5775 ID Badge Reels 0 A 2730
5776 5774 5774/5776 Planner Accessories 0 A 2730
21321 0 21321 Easter Advent Ornaments 1 A 2730
5769 0 5769 Felt Face Masks ~ Pretend Play 2 A 2730
5771 0 5771 Pacifier Clips 3 A 2730
5739 0 5739 Teething Rings 4 A 2730
5741 0 5741 Kids Jewelry 5 A 2730
5770 0 5770 Felt Dress Up Dolls 6 A 2730
5738 0 5738 Hair Clips and Holders 7 A 2730
5773 0 5773 Suspenders and Bow Ties 8 A 2730
5778 0 5778 Pencil Toppers and Magnets 9 A 2730
5777 0 5777 Bookmarks 10 A 2730
5774 0 5774 ID Badge Reels / Planner Accessories 11 A 2730
7989 0 7989 Keychains / Zipper Pulls 12 A 2730
5782 0 5782 Jesse Tree Ornaments ~ Biblical Advent Ornaments 13 A 2730
5781 0 5781 The Christmas Shop 14 A 2730
5780 0 5780 The Fall and Thanksgiving Shop 15 A 2730
5779 0 5779 The Halloween Shop 16 A 2730
19302 0 19302 Nativity Sets 17 A 2730