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 (
    424059, 458237, 408336, 409143, 408421, 
    416607, 405689, 445412, 439660, 417864, 
    424633, 454362
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00056

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 (424059,458237,408336,409143,408421,416607,405689,445412,439660,417864,424633,454362) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
405689 Mini Phone 819 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408336 Mini Phone 637 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408421 Mini Phone 701 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409143 Mini Phone 669 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
416607 Mini Phone 804 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417864 Mini Router 478 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424059 Mini Phone 211 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424633 Mini Router 659 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
439660 Mini Phone 918 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
445412 Mini Phone 829 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
454362 Mini Router 862 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
458237 Mini Phone 505 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.