SELECT 
  `C`.`category_id`, 
  `C`.`services`, 
  `CD`.`category`, 
  `CD`.`icon`, 
  `CD`.`counts`, 
  `CD`.`products_count` 
FROM 
  `cscart_categories` AS `C` 
  LEFT JOIN `cscart_category_descriptions` AS `CD` ON `C`.`category_id` = `CD`.`category_id` 
WHERE 
  `C`.`status` = 'A' 
  AND `C`.`parent_id` = 900

Query time 0.00038

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "0.75"
    },
    "nested_loop": [
      {
        "table": {
          "table_name": "C",
          "access_type": "ref",
          "possible_keys": [
            "parent"
          ],
          "key": "parent",
          "used_key_parts": [
            "parent_id"
          ],
          "key_length": "3",
          "ref": [
            "const"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 0,
          "filtered": "10.00",
          "cost_info": {
            "read_cost": "0.62",
            "eval_cost": "0.01",
            "prefix_cost": "0.72",
            "data_read_per_join": "1K"
          },
          "used_columns": [
            "category_id",
            "parent_id",
            "status",
            "services"
          ],
          "attached_condition": "(`dev2`.`C`.`status` = 'A')"
        }
      },
      {
        "table": {
          "table_name": "CD",
          "access_type": "ref",
          "possible_keys": [
            "PRIMARY"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "category_id"
          ],
          "key_length": "3",
          "ref": [
            "dev2.C.category_id"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 0,
          "filtered": "100.00",
          "cost_info": {
            "read_cost": "0.03",
            "eval_cost": "0.01",
            "prefix_cost": "0.75",
            "data_read_per_join": "441"
          },
          "used_columns": [
            "category_id",
            "category",
            "products_count",
            "icon",
            "counts"
          ]
        }
      }
    ]
  }
}