SELECT 
  destination_links.*, 
  shipping_delays.* 
FROM 
  cscart_store_location_destination_links AS destination_links 
  LEFT JOIN cscart_store_location_shipping_delays AS shipping_delays ON shipping_delays.store_location_id = destination_links.store_location_id 
  AND shipping_delays.destination_id = destination_links.destination_id 
  AND shipping_delays.lang_code = 'en' 
WHERE 
  destination_links.store_location_id IN (1, 2, 8, 9)

Query time 0.00110

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "18.61"
    },
    "nested_loop": [
      {
        "table": {
          "table_name": "destination_links",
          "access_type": "range",
          "possible_keys": [
            "idx_store_location_destination"
          ],
          "key": "idx_store_location_destination",
          "used_key_parts": [
            "store_location_id"
          ],
          "key_length": "3",
          "rows_examined_per_scan": 22,
          "rows_produced_per_join": 22,
          "filtered": "100.00",
          "index_condition": "(`dev_yourmart_co_bw`.`destination_links`.`store_location_id` in (1,2,8,9))",
          "cost_info": {
            "read_cost": "8.71",
            "eval_cost": "2.20",
            "prefix_cost": "10.91",
            "data_read_per_join": "352"
          },
          "used_columns": [
            "link_id",
            "store_location_id",
            "destination_id",
            "warn_about_delay",
            "position"
          ]
        }
      },
      {
        "table": {
          "table_name": "shipping_delays",
          "access_type": "eq_ref",
          "possible_keys": [
            "PRIMARY"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "store_location_id",
            "destination_id",
            "lang_code"
          ],
          "key_length": "12",
          "ref": [
            "dev_yourmart_co_bw.destination_links.store_location_id",
            "dev_yourmart_co_bw.destination_links.destination_id",
            "const"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 22,
          "filtered": "100.00",
          "cost_info": {
            "read_cost": "5.50",
            "eval_cost": "2.20",
            "prefix_cost": "18.61",
            "data_read_per_join": "16K"
          },
          "used_columns": [
            "store_location_id",
            "destination_id",
            "shipping_delay",
            "lang_code"
          ]
        }
      }
    ]
  }
}

Result

link_id store_location_id destination_id warn_about_delay position shipping_delay lang_code
38 1 11 0 1 1 - 5 Business Days en
37 1 15 0 1 1 - 5 Business days en
48 1 20 0 2 1 - 5 Business Days en
83 2 1 0 1 1 - 5 Business Days en
82 2 12 0 4 1 - 5 Business Days en
39 2 13 1 1 1 - 8 Business Days en
44 2 14 1 1 1 - 8 Business Days en
40 2 16 1 1 2 - 10 Business Days en
41 2 17 0 1 1 - 5 Business Days en
65 2 18 0 2 1 - 5 Business Days en
43 2 19 0 1 1 - 5 Business Days en
108 8 1 0 5 1 - 5 Business Days en
88 8 12 0 5 1 - 5 Business Days en
86 8 13 1 4 1 - 8 Business Days en
92 8 14 1 4 1 - 8 Business Days en
87 8 16 1 4 1 - 10 Business Days en
93 8 17 0 4 1 - 5 Business Days en
91 8 18 0 4 1 - 5 Business Days en
89 8 19 0 4 1 - 5 Business Days en
94 9 11 0 4 1 - 5 Business days en
95 9 15 0 4 1 - 5 Business days en
96 9 20 0 4 1 - 5 Business days en