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 (
    402270, 409565, 460167, 427920, 404850, 
    452306, 433998, 428694, 454298, 452982, 
    456262, 419210
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00247

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 (402270,409565,460167,427920,404850,452306,433998,428694,454298,452982,456262,419210) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
402270 Max Bottle 111 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
404850 Max Bottle 766 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409565 Max Bottle 361 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
419210 Max Camera 935 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427920 Max Bottle 633 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428694 Max Camera 210 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433998 Max Bottle 932 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
452306 Max Bottle 831 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
452982 Max Camera 807 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
454298 Max Camera 738 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456262 Max Camera 866 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460167 Max Bottle 429 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.