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 (
    433362, 420051, 433632, 411866, 417686, 
    420470, 436760, 419109, 449775, 419362, 
    421571, 409190
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00046

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 (433362,420051,433632,411866,417686,420470,436760,419109,449775,419362,421571,409190) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
409190 Eco Headphones 752 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
411866 Eco Drone 824 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417686 Eco Grinder 167 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
419109 Eco Headphones 497 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
419362 Eco Headphones 589 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420051 Eco Drone 617 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420470 Eco Grinder 170 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421571 Eco Headphones 685 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433362 Eco Drone 453 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433632 Eco Drone 798 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
436760 Eco Grinder 338 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
449775 Eco Headphones 514 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.