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 (
    430349, 453094, 411903, 422798, 422092, 
    433129, 424917, 459596, 425363, 441519, 
    434875, 460167
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00060

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 (430349,453094,411903,422798,422092,433129,424917,459596,425363,441519,434875,460167) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
411903 Lite Watch 182 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422092 Max Backpack 491 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422798 Lite Watch 479 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424917 Max Book 477 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
425363 Max Book 609 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
430349 Lite Sofa 821 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433129 Max Backpack 775 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
434875 Max Book 868 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
441519 Max Book 612 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453094 Lite Sofa 900 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
459596 Max Book 549 — 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.