SELECT 
  product_id, 
  short_description, 
  full_description 
FROM 
  cscart_product_descriptions 
WHERE 
  product_id IN (187, 185) 
  AND lang_code = 'en'

Query time 0.00029

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "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 (187,185)",
          "attached_condition": "cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description
185 <p>CG Lightweight Cart bags are perfect for push and power carts</p>
187 <p>Used by Cleveland Golf tour staff players worldwide</p>