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 (191, 197) 
  AND cscart_product_descriptions.lang_code = 'ru'

Query time 0.00294

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": 2,
          "filtered": 100,
          "index_condition": "cscart_product_descriptions.product_id in (191,197) and cscart_product_descriptions.lang_code = 'ru'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
191 <p><strong><span style="font-size: small;">Треклист:</span></strong></p><p><span style="font-size: small;">01. Radio Song</span><br /><span style="font-size: small;"> 02. Cinnamon Tree</span><br /><span style="font-size: small;"> 03. Crowned &amp; Kissed</span><br /><span style="font-size: small;"> 04. Land Of The Free</span><br /><span style="font-size: small;"> 05. Black Gold</span><br /><span style="font-size: small;"> 06. I Can't Help It</span><br /><span style="font-size: small;"> 07. Hold On Me</span><br /><span style="font-size: small;"> 08. Vague Suspicions</span><br /><span style="font-size: small;"> 09. Endangered Species</span><br /><span style="font-size: small;"> 10. Let Her</span><br /><span style="font-size: small;"> 11. City Of Roses</span><br /><span style="font-size: small;"> 12. Smile Like That</span></p>
197 <p><span style="font-size: small;"><strong>Треклист:</strong></span></p><p><span style="font-size: small;">01. Tenderly</span><br /><span style="font-size: small;"> 02. I Want To Hold Your Hand</span><br /><span style="font-size: small;"> 03. My Cherie Amour</span><br /><span style="font-size: small;"> 04. Naima</span><br /><span style="font-size: small;"> 05. Tequila</span><br /><span style="font-size: small;"> 06. Don't Know Why</span><br /><span style="font-size: small;"> 07. Lady In My Life</span><br /><span style="font-size: small;"> 08. My One And Only Love</span><br /><span style="font-size: small;"> 09. Paper Moon</span><br /><span style="font-size: small;"> 10. Danny Boy</span><br /><span style="font-size: small;"> 11. Since I Fell For You</span><br /><span style="font-size: small;"> 12. Fingerlero</span></p><p><span style="font-size: small;">&nbsp;</span></p>