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 (
    443778, 413186, 432494, 406992, 417005, 
    443366, 433693, 445954, 441514, 456101, 
    421337, 459209
  ) 
  AND cscart_product_descriptions.lang_code = 'zh'

Query time 0.00060

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 (443778,413186,432494,406992,417005,443366,433693,445954,441514,456101,421337,459209) and cscart_product_descriptions.lang_code = 'zh'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
406992 Eco Headphones 867 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
413186 Eco Headphones 431 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417005 Eco Headphones 940 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421337 Eco Laptop 227 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
432494 Eco Headphones 854 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433693 Eco Headphones 994 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
441514 Eco Laptop 203 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
443366 Eco Headphones 943 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
443778 Eco Headphones 401 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
445954 Eco Laptop 142 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456101 Eco Laptop 213 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
459209 Eco Laptop 380 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.