SELECT 
  bundle_image_id, 
  bundle_id 
FROM 
  vi_product_bundle_images 
WHERE 
  bundle_id IN (1, 2, 3)

Query time 0.00015

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "table": {
          "table_name": "vi_product_bundle_images",
          "access_type": "ALL",
          "possible_keys": ["bundle_id"],
          "rows": 24,
          "filtered": 100,
          "attached_condition": "vi_product_bundle_images.bundle_id in (1,2,3)"
        }
      }
    ]
  }
}

Result

bundle_image_id bundle_id
1 1
2 1
3 1
4 1
5 1
6 1
7 1
9 1
10 2
11 2
12 2
13 2
14 2
15 2
16 2
18 2
19 3
20 3
21 3
22 3
23 3
24 3
25 3
27 3