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 (
    446945, 419788, 441409, 421788, 429875, 
    408990, 421915, 427033, 425013, 413195, 
    456232, 422412
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00050

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 (446945,419788,441409,421788,429875,408990,421915,427033,425013,413195,456232,422412) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
408990 Eco Grinder 155 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
413195 Eco Grinder 766 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
419788 Eco Drone 756 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421788 Eco Drone 886 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421915 Eco Grinder 342 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422412 Eco Grinder 971 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
425013 Eco Grinder 536 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427033 Eco Grinder 416 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
429875 Eco Drone 901 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
441409 Eco Drone 859 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
446945 Eco Drone 720 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456232 Eco Grinder 875 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.