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 (
    415347, 402013, 418477, 419869, 431915, 
    453929, 458176, 459246, 419342, 450112, 
    402856, 425249, 406919, 429651, 446530, 
    432652, 459363, 412904, 415849, 422420, 
    447660, 459541, 416465, 431024
  ) 
  AND cscart_product_descriptions.lang_code = 'zh'

Query time 0.00066

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 (415347,402013,418477,419869,431915,453929,458176,459246,419342,450112,402856,425249,406919,429651,446530,432652,459363,412904,415849,422420,447660,459541,416465,431024) and cscart_product_descriptions.lang_code = 'zh'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
402013 Mini Drone 832 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
402856 Mini Headphones 361 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
406919 Mini Laptop 227 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
412904 Mini Laptop 616 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
415347 Mini Drone 819 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
415849 Mini Laptop 973 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
416465 Mini Mixer 480 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
418477 Mini Drone 918 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
419342 Mini Grinder 938 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
419869 Mini Grinder 213 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422420 Mini Mixer 153 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
425249 Mini Headphones 600 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
429651 Mini Laptop 283 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
431024 Mini Mixer 493 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
431915 Mini Grinder 509 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
432652 Mini Laptop 521 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
446530 Mini Laptop 468 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
447660 Mini Mixer 287 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
450112 Mini Headphones 149 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453929 Mini Grinder 552 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
458176 Mini Grinder 590 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
459246 Mini Grinder 843 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
459363 Mini Laptop 532 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
459541 Mini Mixer 292 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.