SELECT 
  prf.product_id, 
  prf.facility_id, 
  rf.status, 
  rf.timestamp, 
  rfd.title 
FROM 
  cscart_ec_hb_product_room_facilities as prf 
  LEFT JOIN cscart_ec_hb_room_facilities as rf ON prf.facility_id = rf.facility_id 
  LEFT JOIN cscart_ec_hb_room_facilities_desc as rfd ON rf.facility_id = rfd.facility_id 
WHERE 
  prf.product_id IN (
    453, 
    454, 
    455, 
    450, 
    451, 
    452, 
    435, 
    439, 
    443, 
    430, 
    429, 
    428, 
    415, 
    416, 
    417, 
    418, 
    419, 
    420, 
    421, 
    422, 
    423, 
    424, 
    425, 
    426, 
    403, 
    404, 
    405, 
    406, 
    407, 
    408, 
    409, 
    410, 
    411, 
    412, 
    413, 
    414, 
    391, 
    392, 
    393, 
    394, 
    395, 
    396, 
    397, 
    398, 
    399, 
    400, 
    401, 
    402, 
    379, 
    380, 
    381, 
    382, 
    383, 
    384, 
    385, 
    386, 
    387, 
    388, 
    389, 
    390, 
    363, 
    364, 
    365, 
    366, 
    367, 
    368, 
    369, 
    370, 
    355, 
    356, 
    357, 
    358, 
    359, 
    360, 
    361, 
    362, 
    352, 
    353, 
    354, 
    350, 
    349, 
    346, 
    345, 
    331, 
    335, 
    339, 
    341, 
    315, 
    289, 
    287, 
    286, 
    278, 
    280, 
    282, 
    247, 
    248, 
    241, 
    244, 
    245, 
    246, 
    240, 
    6, 
    66, 
    166, 
    214, 
    219, 
    221, 
    223, 
    192, 
    194, 
    195, 
    196, 
    197, 
    198, 
    199, 
    200, 
    201, 
    202, 
    203, 
    204, 
    205, 
    206, 
    207, 
    208, 
    209, 
    210, 
    211, 
    212
  ) 
  AND rfd.lang_code = 'en' 
  AND rf.status = 'A' 
ORDER BY 
  rfd.title ASC

Query time 0.00102

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "8.21"
    },
    "ordering_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "2.00"
      },
      "nested_loop": [
        {
          "table": {
            "table_name": "rf",
            "access_type": "ALL",
            "possible_keys": [
              "PRIMARY"
            ],
            "rows_examined_per_scan": 3,
            "rows_produced_per_join": 1,
            "filtered": "33.33",
            "cost_info": {
              "read_cost": "2.41",
              "eval_cost": "0.20",
              "prefix_cost": "2.61",
              "data_read_per_join": "16"
            },
            "used_columns": [
              "facility_id",
              "status",
              "timestamp"
            ],
            "attached_condition": "((`pankajecarter_systemfour`.`rf`.`status` = 'A') and (`pankajecarter_systemfour`.`rf`.`facility_id` is not null))"
          }
        },
        {
          "table": {
            "table_name": "rfd",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "facility_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "pankajecarter_systemfour.rf.facility_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 1,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.00",
              "eval_cost": "0.20",
              "prefix_cost": "3.81",
              "data_read_per_join": "784"
            },
            "used_columns": [
              "facility_id",
              "lang_code",
              "title"
            ]
          }
        },
        {
          "table": {
            "table_name": "prf",
            "access_type": "ref",
            "possible_keys": [
              "product_facility",
              "product_id",
              "facility_id"
            ],
            "key": "facility_id",
            "used_key_parts": [
              "facility_id"
            ],
            "key_length": "3",
            "ref": [
              "pankajecarter_systemfour.rf.facility_id"
            ],
            "rows_examined_per_scan": 2,
            "rows_produced_per_join": 2,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "2.00",
              "eval_cost": "0.40",
              "prefix_cost": "6.21",
              "data_read_per_join": "32"
            },
            "used_columns": [
              "product_id",
              "facility_id"
            ],
            "attached_condition": "(`pankajecarter_systemfour`.`prf`.`product_id` in (453,454,455,450,451,452,435,439,443,430,429,428,415,416,417,418,419,420,421,422,423,424,425,426,403,404,405,406,407,408,409,410,411,412,413,414,391,392,393,394,395,396,397,398,399,400,401,402,379,380,381,382,383,384,385,386,387,388,389,390,363,364,365,366,367,368,369,370,355,356,357,358,359,360,361,362,352,353,354,350,349,346,345,331,335,339,341,315,289,287,286,278,280,282,247,248,241,244,245,246,240,6,66,166,214,219,221,223,192,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212))"
          }
        }
      ]
    }
  }
}