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 (88, 89) 
  AND cscart_product_descriptions.lang_code = 'ja'

Query time 0.00039

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "table_name": "cscart_product_descriptions",
      "access_type": "range",
      "possible_keys": ["PRIMARY", "product_id"],
      "key": "product_id",
      "key_length": "3",
      "used_key_parts": ["product_id"],
      "rows": 2,
      "filtered": 100,
      "index_condition": "cscart_product_descriptions.product_id in (88,89)",
      "attached_condition": "cscart_product_descriptions.lang_code = 'ja'"
    }
  }
}

Result

product_id short_description full_description
88 <p> メーカー: ワーナー・ホーム・ビデオ<br /> <br /> プラットフォーム: PS3<br /> <br /> ジャンル: アクション/アドベンチャー, レーシング<br /> <br /> 商品の説明:<br />  <br />  リアルな戦闘を再現したロード・オブ・ザ・リングの世界のゲームです。そして戦利品や報酬システム、キャラクターのレベルアップやステータスと外見のカスタマイズ、スキルや特殊能力の解放、武器の変更など、やり込み甲斐のあるRPG要素を楽しめます。 相互に関連したオンライン協力プレイでは、3人のプレイヤーが旅の仲間として一緒にプレイできます。種族は人間、エルフ、ドワーフから選択可能で、それぞれのスキルが仲間としての成功やプレイの進行状況を左右します。 団結しなければ、生き残れません! </p>
89 <p> メーカー: ワーナー・ホームビデオ<br /> <br /> プラットフォーム: PS3<br /> <br /> ジャンル: アクション/アドベンチャー</p>