SELECT
netting_settings_objects.object_id as object_id,
netting_settings_objects.type as object_type,
netting_settings_objects.name as description,
(
CASE WHEN storefront_values.object_id IS NOT NULL THEN storefront_values.value ELSE netting_settings_objects.value END
) AS value
FROM
netting_settings_objects
LEFT JOIN netting_settings_vendor_values AS storefront_values ON storefront_values.object_id = netting_settings_objects.object_id
AND storefront_values.storefront_id = 1
AND storefront_values.company_id = 0
WHERE
1
AND (
FIND_IN_SET(
'STOREFRONT', netting_settings_objects.edition_type
)
OR FIND_IN_SET(
'ROOT', netting_settings_objects.edition_type
)
OR FIND_IN_SET(
'MVE:STOREFRONT', netting_settings_objects.edition_type
)
OR FIND_IN_SET(
'MVE:ROOT', netting_settings_objects.edition_type
)
)
AND netting_settings_objects.object_id = 5966
ORDER BY
netting_settings_objects.position