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 (
    408818, 424420, 422451, 420718, 420738, 
    440135, 427608, 428894, 445601, 420381, 
    430254, 422033
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00055

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 (408818,424420,422451,420718,420738,440135,427608,428894,445601,420381,430254,422033) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
408818 Max Grinder 226 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420381 Max Grinder 703 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420718 Max Grinder 368 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420738 Max Grinder 392 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422033 Max Grinder 850 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422451 Max Grinder 316 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424420 Max Grinder 290 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427608 Max Grinder 490 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428894 Max Grinder 531 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
430254 Max Grinder 848 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
440135 Max Grinder 475 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
445601 Max Grinder 603 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.