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 (
    410538, 439943, 443297, 409267, 413118, 
    425807, 411785, 459904, 420755, 408282, 
    405032, 431397
  ) 
  AND cscart_product_descriptions.lang_code = 'zh'

Query time 0.00084

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.0216566,
    "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": 12,
          "cost": 0.0216566,
          "filtered": 100,
          "attached_condition": "cscart_product_descriptions.product_id in (410538,439943,443297,409267,413118,425807,411785,459904,420755,408282,405032,431397) and cscart_product_descriptions.lang_code = 'zh'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
405032 Pro Backpack 181 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408282 Prime Watch 998 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409267 Prime Watch 292 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
410538 Prime Sofa 747 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
411785 Prime Watch 713 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
413118 Prime Watch 337 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420755 Prime Watch 908 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
425807 Prime Watch 553 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
431397 Pro Backpack 524 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
439943 Prime Sofa 756 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
443297 Prime Watch 137 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
459904 Prime Watch 743 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.