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 (325, 324, 323, 322) 
  AND cscart_product_descriptions.lang_code = 'vn'

Query time 0.00040

JSON explain

{
  "query_block": {
    "select_id": 1,
    "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"],
          "rows": 4,
          "filtered": 100,
          "index_condition": "cscart_product_descriptions.product_id in (325,324,323,322) and cscart_product_descriptions.lang_code = 'vn'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
322 <p>Trà Cascara Blue Sơn La 67.5g hộp giấy – trà từ vỏ cà phê Arabica, chua nhẹ hậu ngọt thanh, dễ uống. Đồ uống healthy K Coffee.</p>
323 <p>Trà Cascara Blue Sơn La 67.5g hộp thiếc – trà từ vỏ cà phê Arabica, chua nhẹ hậu ngọt thanh, dễ uống. Đồ uống healthy K Coffee.</p>
324 <p>Trà Cascara Blue Sơn La 112.5g – trà từ vỏ cà phê Arabica, chua nhẹ hậu ngọt thanh, dễ uống. Đồ uống healthy K Coffee.</p>
325 <p>Trà Cascara Blue Sơn La 112.5g cao cấp – trà từ vỏ cà phê Arabica, chua nhẹ hậu ngọt thanh, dễ uống. Đồ uống healthy K Coffee.</p>