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 (
    1331, 1329, 1334, 1337, 1339, 1340, 1343, 
    399, 1299, 1810, 1811, 2918
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00043

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 (1331,1329,1334,1337,1339,1340,1343,399,1299,1810,1811,2918) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
399 Commercial Max/Oval Steel Accessory Universal Tiedown Kit
1299 Ford Platform lightbar extension to suit TRANSIT EXLWB
1329 Commercial Max/Oval Steel Accessory Jerrycan holder
1331 Commercial Max/Oval Steel Accessory Jack and shovel holder to suit ARB rack
1334 Commercial Max/Oval Steel Accessory Removable boat roller pair
1337 <p>Commercial Max/Oval Steel Accessory Safeclamp ladder clamp pair</p>
1339 Commercial Max/Oval Steel Accessory Shovel holder
1340 Commercial Max/Oval Steel Accessory Spare wheel carrier
1343 Commercial Max/Oval Steel Accessory Steel Wind Deflector
1810 Platform lightbar extension to suit Crafter LWB
1811 Platform lightbar extension to suit Crafter MWB
2918 <p>this is a test product</p>