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 (
    99963, 99964, 99965, 99966, 99967, 99968, 
    99969, 99970, 99971, 99972, 99973, 
    99974, 99975, 99976, 99977, 99978, 
    99979, 99980, 99981, 99982, 99983, 
    99984, 99985, 99986, 99987, 99988, 
    99989, 99990, 99991, 99992, 99993, 
    99994, 99995, 100003, 100004, 100013, 
    100014, 100015, 100016, 100017, 100018, 
    100019, 100020, 100021, 100022, 100023, 
    100024, 100025, 100026, 100027, 100028, 
    100029, 100030, 100031, 100032, 100033, 
    100034, 100035, 100036, 100037, 100038, 
    100039, 100040, 100041, 100042, 100043, 
    100044, 100045, 100046, 100047, 100048, 
    100049, 100050, 100051, 100052, 100053, 
    100054, 100055, 100056, 100057
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00136

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "36.04"
    },
    "table": {
      "table_name": "cscart_product_descriptions",
      "access_type": "range",
      "possible_keys": [
        "PRIMARY",
        "product_id"
      ],
      "key": "PRIMARY",
      "used_key_parts": [
        "product_id",
        "lang_code"
      ],
      "key_length": "9",
      "rows_examined_per_scan": 80,
      "rows_produced_per_join": 80,
      "filtered": "100.00",
      "cost_info": {
        "read_cost": "28.04",
        "eval_cost": "8.00",
        "prefix_cost": "36.04",
        "data_read_per_join": "305K"
      },
      "used_columns": [
        "product_id",
        "lang_code",
        "short_description",
        "full_description"
      ],
      "attached_condition": "((`nuie_scalesta_net`.`cscart_product_descriptions`.`product_id` in (99963,99964,99965,99966,99967,99968,99969,99970,99971,99972,99973,99974,99975,99976,99977,99978,99979,99980,99981,99982,99983,99984,99985,99986,99987,99988,99989,99990,99991,99992,99993,99994,99995,100003,100004,100013,100014,100015,100016,100017,100018,100019,100020,100021,100022,100023,100024,100025,100026,100027,100028,100029,100030,100031,100032,100033,100034,100035,100036,100037,100038,100039,100040,100041,100042,100043,100044,100045,100046,100047,100048,100049,100050,100051,100052,100053,100054,100055,100056,100057)) and (`nuie_scalesta_net`.`cscart_product_descriptions`.`lang_code` = 'en'))"
    }
  }
}

Result

product_id short_description full_description
99963
99964
99965
99966
99967
99968
99969
99970
99971
99972
99973
99974
99975
99976
99977
99978
99979
99980
99981
99982
99983
99984
99985
99986
99987
99988
99989
99990
99991
99992
99993
99994
99995
100003
100004
100013
100014
100015
100016
100017
100018
100019
100020
100021
100022
100023
100024
100025
100026
100027
100028
100029
100030
100031
100032
100033
100034
100035
100036
100037
100038
100039
100040
100041
100042
100043
100044
100045
100046
100047
100048
100049
100050
100051
100052
100053
100054
100055
100056
100057