SELECT 
  cscart_settings_objects.object_id as object_id, 
  name, 
  section_id, 
  section_tab_id, 
  type, 
  position, 
  is_global, 
  cscart_settings_objects.name as description, 
  IF(
    cscart_settings_vendor_values.value IS NULL, 
    cscart_settings_objects.value, 
    cscart_settings_vendor_values.value
  ) as value 
FROM 
  cscart_settings_objects 
  LEFT JOIN cscart_settings_vendor_values ON cscart_settings_vendor_values.object_id = cscart_settings_objects.object_id 
  AND company_id = 1 
WHERE 
  1 
  AND section_id = '55' 
  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.type <> 'H' 
ORDER BY 
  cscart_settings_objects.position

Query time 0.00104

JSON explain

{
  "query_block": {
    "select_id": 1,
    "read_sorted_file": {
      "filesort": {
        "sort_key": "cscart_settings_objects.position",
        "table": {
          "table_name": "cscart_settings_objects",
          "access_type": "ref",
          "possible_keys": ["section_id"],
          "key": "section_id",
          "key_length": "4",
          "used_key_parts": ["section_id"],
          "ref": ["const"],
          "rows": 9,
          "filtered": 100,
          "attached_condition": "cscart_settings_objects.section_id <=> '55' 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.`type` <> 'H'"
        }
      }
    },
    "table": {
      "table_name": "cscart_settings_vendor_values",
      "access_type": "eq_ref",
      "possible_keys": ["PRIMARY"],
      "key": "PRIMARY",
      "key_length": "7",
      "used_key_parts": ["object_id", "company_id"],
      "ref": [
        "orbit_cscart_orbit_cscart.cscart_settings_objects.object_id",
        "const"
      ],
      "rows": 1,
      "filtered": 100
    }
  }
}

Result

object_id name section_id section_tab_id type position is_global description value
5799 point_rate 55 56 I 0 N point_rate 1
5800 auto_price_in_points 55 56 C 10 N auto_price_in_points Y
5801 price_in_points_with_discounts 55 56 C 20 N price_in_points_with_discounts Y
5802 points_with_discounts 55 56 C 30 N points_with_discounts Y
5803 price_in_points_order_discount 55 56 C 40 N price_in_points_order_discount Y
5804 reward_points_order_discount 55 56 C 50 N reward_points_order_discount Y
5805 higher_level_extract 55 56 C 60 N higher_level_extract Y
5806 several_points_action 55 56 S 70 N several_points_action minimal_absolute
5807 consider_zero_values 55 56 C 80 N consider_zero_values N
5808 log_per_page 55 56 I 90 N log_per_page 10