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 (
    436035, 430349, 453094, 418322, 411903, 
    426592, 429298, 422798, 458835, 426456, 
    449886, 441567
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00233

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 (436035,430349,453094,418322,411903,426592,429298,422798,458835,426456,449886,441567) 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.
418322 Lite Watch 100 — 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.
426456 Lite Watch 824 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
426592 Lite Watch 190 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
429298 Lite Watch 374 — 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.
436035 Lite Sofa 811 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
441567 Max Backpack 276 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
449886 Lite Watch 938 — 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.
458835 Lite Watch 493 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.