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 (
    1812, 1808, 1807, 1813, 1836, 1860, 1861, 
    1837, 1851, 1853, 1838, 1839
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00034

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.0216566,
    "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"],
          "loops": 1,
          "rows": 12,
          "cost": 0.0216566,
          "filtered": 100,
          "attached_condition": "cscart_product_descriptions.product_id in (1812,1808,1807,1813,1836,1860,1861,1837,1851,1853,1838,1839) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
1807 Wedgetail Adventure Accessory Lightbar Support plate
1808 Wedgetail Adventure Accessory Lightbar Support Extension
1812 Wedgetail Adventure Accessory Light Mount Grab Handle
1813 Wedgetail Adventure Accessory Milwaukee Packout Bracket
1836 Wedgetail Adventure Accessory Ratchet Straps PACK of 2 3.5 M
1837 Wedgetail Adventure Accessory Roof Top Tent Mounting Hardware
1838 Wedgetail Adventure Accessory Sides for 1100mm Platforms
1839 Wedgetail Adventure Accessory Sides for 1400mm Platforms
1851 Wedgetail Adventure Accessory Shovel holder
1853 Wedgetail Adventure Accessory Side Light Mount x 2
1860 Wedgetail Adventure Accessory Recovery Wing Tracks Bracket to sit on side of rack(Suits Maxtrax and new TREDs only) - No Pins included
1861 Wedgetail Adventure Accessory Recovery Wing Tracks Bracket to sit on top of rack(Suits Maxtrax and new TREDs only) - No Pins included