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 
FROM 
  cscart_product_descriptions 
WHERE 
  cscart_product_descriptions.product_id IN (
    66798, 66799, 66800, 66801, 66802, 66803, 
    66804, 66805, 66806, 66807, 66808, 
    66809
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00030

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "9.31"
    },
    "table": {
      "table_name": "cscart_product_descriptions",
      "access_type": "range",
      "possible_keys": [
        "PRIMARY",
        "product_id"
      ],
      "key": "PRIMARY",
      "used_key_parts": [
        "product_id",
        "lang_code"
      ],
      "key_length": "9",
      "rows_examined_per_scan": 12,
      "rows_produced_per_join": 12,
      "filtered": "100.00",
      "cost_info": {
        "read_cost": "8.11",
        "eval_cost": "1.20",
        "prefix_cost": "9.31",
        "data_read_per_join": "54K"
      },
      "used_columns": [
        "product_id",
        "lang_code",
        "short_description",
        "full_description"
      ],
      "attached_condition": "((`cscart_db`.`cscart_product_descriptions`.`product_id` in (66798,66799,66800,66801,66802,66803,66804,66805,66806,66807,66808,66809)) and (`cscart_db`.`cscart_product_descriptions`.`lang_code` = 'en'))"
    }
  }
}

Result

product_id short_description full_description
66798 <p>Flirty floral fruity with raspberry, rose, and warm vanilla-musk.</p>
66799 Refreshing aquatic floral woody with citrus and sea breeze.
66800 Uplifting floral aquatic with citrus and soft jasmine.
66801 Intriguing oud and honey with rose and warm vanilla.
66802 Rebellious citrus aromatic with green tea and woody notes.
66803 Radiant fresh floral woody with citrus and delicate rose.
66804 Bold smoky tea and wood with soft vanilla-amber.
66805 Wild aquatic fresh with sea breeze and soft florals.
66806 Elegant saffron and rose with warm oud and amber.
66807 Timeless aromatic fougere with citrus and lavender.
66808 Sophisticated spicy woody floral with citrus and warm amber.
66809 Timeless aromatic aquatic with citrus and lavender.