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 (
    438971, 404180, 445058, 441079, 442454, 
    460859, 414365, 440075, 444561, 438377, 
    430757, 425044
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00296

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 (438971,404180,445058,441079,442454,460859,414365,440075,444561,438377,430757,425044) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
404180 Pro Sneakers 230 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414365 Pro Sofa 658 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
425044 Pro Sofa 959 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
430757 Pro Sofa 906 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
438377 Pro Sofa 789 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
438971 Pro Sneakers 101 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
440075 Pro Sofa 715 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
441079 Pro Sneakers 850 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
442454 Pro Sneakers 939 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
444561 Pro Sofa 747 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
445058 Pro Sneakers 787 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460859 Pro Sofa 329 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.