SELECT 
  tmall_ab__vendor_stickers.* 
FROM 
  tmall_ab__vendor_stickers 
  LEFT JOIN tmall_ab__stickers AS stickers ON stickers.sticker_id = tmall_ab__vendor_stickers.sticker_id 
WHERE 
  stickers.sticker_id IN (35, 38, 43) 
  AND stickers.vendor_edit = 'Y'

Query time 0.00847

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.0097204,
    "nested_loop": [
      {
        "table": {
          "table_name": "stickers",
          "access_type": "range",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["sticker_id"],
          "loops": 1,
          "rows": 3,
          "cost": 0.00600749,
          "filtered": 100,
          "attached_condition": "stickers.sticker_id in (35,38,43) and stickers.vendor_edit = 'Y'"
        }
      },
      {
        "table": {
          "table_name": "tmall_ab__vendor_stickers",
          "access_type": "ref",
          "possible_keys": ["sticker_company_id"],
          "key": "sticker_company_id",
          "key_length": "3",
          "used_key_parts": ["sticker_id"],
          "ref": ["tmall.stickers.sticker_id"],
          "loops": 3,
          "rows": 1,
          "cost": 0.00371291,
          "filtered": 100
        }
      }
    ]
  }
}