SELECT 
  cscart_settings_objects.object_id as object_id, 
  cscart_settings_objects.type as object_type, 
  cscart_settings_objects.name as description, 
  cscart_settings_objects.value AS value 
FROM 
  cscart_settings_objects 
WHERE 
  1 
  AND (
    FIND_IN_SET(
      'ROOT', cscart_settings_objects.edition_type
    ) 
    OR FIND_IN_SET(
      'VENDOR', cscart_settings_objects.edition_type
    ) 
    OR FIND_IN_SET(
      'ULT:ROOT', cscart_settings_objects.edition_type
    ) 
    OR FIND_IN_SET(
      'ULT:VENDOR', cscart_settings_objects.edition_type
    )
  ) 
  AND cscart_settings_objects.object_id = 291 
ORDER BY 
  cscart_settings_objects.position

Query time 0.00032

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "1.00"
    },
    "ordering_operation": {
      "using_filesort": false,
      "table": {
        "table_name": "cscart_settings_objects",
        "access_type": "const",
        "possible_keys": [
          "PRIMARY"
        ],
        "key": "PRIMARY",
        "used_key_parts": [
          "object_id"
        ],
        "key_length": "3",
        "ref": [
          "const"
        ],
        "rows_examined_per_scan": 1,
        "rows_produced_per_join": 1,
        "filtered": "100.00",
        "cost_info": {
          "read_cost": "0.00",
          "eval_cost": "0.20",
          "prefix_cost": "0.00",
          "data_read_per_join": "808"
        },
        "used_columns": [
          "object_id",
          "edition_type",
          "name",
          "type",
          "value",
          "position"
        ]
      }
    }
  }
}

Result

object_id object_type description value
291 I storage a:1:{s:7:"storage";s:4:"file";}