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 (
    442532, 408975, 443876, 402463, 438541, 
    427151, 454935, 437239, 452456, 406327, 
    412758, 433230
  ) 
  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 (442532,408975,443876,402463,438541,427151,454935,437239,452456,406327,412758,433230) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
402463 Smart Sneakers 899 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
406327 Smart Sofa 673 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408975 Smart Sneakers 841 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
412758 Smart Sofa 880 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427151 Smart Sofa 241 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433230 Smart Sofa 893 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
437239 Smart Sofa 290 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
438541 Smart Sneakers 930 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
442532 Smart Sneakers 785 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
443876 Smart Sneakers 884 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
452456 Smart Sofa 514 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
454935 Smart Sofa 245 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.