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 (
    401689, 447441, 450548, 418567, 444945, 
    422854, 439801, 403001, 429331, 413481, 
    455352, 451767
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00052

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 (401689,447441,450548,418567,444945,422854,439801,403001,429331,413481,455352,451767) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
401689 Pro Shirt 917 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
403001 Pro Sofa 512 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
413481 Pro Sofa 855 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
418567 Pro Sneakers 609 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422854 Pro Sofa 109 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
429331 Pro Sofa 714 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
439801 Pro Sofa 455 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
444945 Pro Sneakers 741 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
447441 Pro Sneakers 417 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
450548 Pro Sneakers 551 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
451767 Pro Sofa 863 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
455352 Pro Sofa 859 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.