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 (
    436135, 413081, 437392, 451197, 460754, 
    439162, 456958, 421530, 440029, 438251, 
    455281, 412981
  ) 
  AND cscart_product_descriptions.lang_code = 'ar'

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 (436135,413081,437392,451197,460754,439162,456958,421530,440029,438251,455281,412981) and cscart_product_descriptions.lang_code = 'ar'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
412981 Lite Chair 979 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
413081 Lite Camera 667 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421530 Lite Chair 222 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
436135 Lite Camera 625 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
437392 Lite Camera 710 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
438251 Lite Chair 369 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
439162 Lite Camera 948 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
440029 Lite Chair 226 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
451197 Lite Camera 749 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
455281 Lite Chair 503 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456958 Lite Chair 153 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
460754 Lite Camera 893 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.