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 (
    448981, 430278, 401703, 452812, 431070, 
    401798, 441431, 408605, 417301, 456097, 
    414301, 414111
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00048

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 (448981,430278,401703,452812,431070,401798,441431,408605,417301,456097,414301,414111) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
401703 Mini Chair 562 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
401798 Mini Chair 920 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408605 Mini Drone 188 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414111 Mini Drone 619 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414301 Mini Drone 613 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417301 Mini Drone 212 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
430278 Mini Chair 309 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
431070 Mini Chair 627 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
441431 Mini Drone 143 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
448981 Mini Chair 300 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
452812 Mini Chair 601 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456097 Mini Drone 260 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.