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 (3, 7, 11, 21, 22, 25) 
  AND stickers.vendor_edit = 'Y'

Query time 0.00926

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.01273144,
    "nested_loop": [
      {
        "table": {
          "table_name": "tmall_ab__vendor_stickers",
          "access_type": "ALL",
          "possible_keys": ["sticker_company_id"],
          "loops": 1,
          "rows": 1,
          "cost": 0.0110178,
          "filtered": 100
        }
      },
      {
        "table": {
          "table_name": "stickers",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["sticker_id"],
          "ref": ["tmall.tmall_ab__vendor_stickers.sticker_id"],
          "loops": 1,
          "rows": 1,
          "cost": 0.00171364,
          "filtered": 100,
          "attached_condition": "stickers.sticker_id in (3,7,11,21,22,25) and stickers.vendor_edit = 'Y'"
        }
      }
    ]
  }
}