SELECT 
  cscart_product_descriptions.product_id, 
  cscart_product_descriptions.short_description, 
  IF(
    cscart_product_descriptions.short_description = '' 
    OR cscart_product_descriptions.short_description IS NULL, 
    cscart_product_descriptions.full_description, 
    ''
  ) AS full_description, 
  cscart_product_descriptions.unit_name 
FROM 
  cscart_product_descriptions 
WHERE 
  cscart_product_descriptions.product_id IN (
    412939, 435593, 457221, 431380, 432643, 
    430955, 425786, 433168, 420963, 435716, 
    436514, 419288, 424427, 460521, 414020, 
    414696, 431630, 420330, 439312, 427057, 
    405641, 426607, 407640, 409611
  ) 
  AND cscart_product_descriptions.lang_code = 'zh'

Query time 0.01126

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.04252208,
    "nested_loop": [
      {
        "table": {
          "table_name": "cscart_product_descriptions",
          "access_type": "range",
          "possible_keys": ["PRIMARY", "product_id"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["product_id", "lang_code"],
          "loops": 1,
          "rows": 24,
          "cost": 0.04252208,
          "filtered": 100,
          "attached_condition": "cscart_product_descriptions.product_id in (412939,435593,457221,431380,432643,430955,425786,433168,420963,435716,436514,419288,424427,460521,414020,414696,431630,420330,439312,427057,405641,426607,407640,409611) and cscart_product_descriptions.lang_code = 'zh'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
405641 Mini Sneakers 386 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
407640 Mini Sneakers 652 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409611 Mini Sneakers 973 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
412939 Mini Mixer 584 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414020 Mini Shirt 112 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414696 Mini Shirt 274 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
419288 Mini Router 124 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420330 Mini Shirt 740 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420963 Mini Phone 770 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424427 Mini Router 272 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
425786 Mini Phone 620 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
426607 Mini Sneakers 526 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427057 Mini Sneakers 144 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
430955 Mini Phone 342 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
431380 Mini Mixer 776 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
431630 Mini Shirt 462 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
432643 Mini Phone 104 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433168 Mini Phone 758 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
435593 Mini Mixer 605 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
435716 Mini Phone 965 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
436514 Mini Router 119 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
439312 Mini Shirt 763 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457221 Mini Mixer 628 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460521 Mini Router 523 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.