SELECT 
  cscart_products_categories.product_id, 
  GROUP_CONCAT(
    IF(
      cscart_products_categories.link_type = "M", 
      CONCAT(
        cscart_products_categories.category_id, 
        "M"
      ), 
      cscart_products_categories.category_id
    )
  ) AS category_ids, 
  product_position_source.position AS position 
FROM 
  cscart_products_categories 
  INNER JOIN cscart_categories ON cscart_categories.category_id = cscart_products_categories.category_id 
  AND cscart_categories.storefront_id IN (0, 1) 
  AND (
    cscart_categories.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, cscart_categories.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, cscart_categories.usergroup_ids
    )
  ) 
  AND cscart_categories.status IN ('A', 'H') 
  LEFT JOIN cscart_products_categories AS product_position_source ON cscart_products_categories.product_id = product_position_source.product_id 
  AND product_position_source.category_id = 7207 
WHERE 
  cscart_products_categories.product_id IN (
    86011, 86012, 86014, 86015, 86017, 86018, 
    86019, 86020, 86021, 86022, 86023, 
    86024, 86025, 86026, 86027, 86028, 
    86029, 86030, 86031, 86032, 86033, 
    86034, 86035, 86036, 86037, 86038, 
    86039, 86040, 86041, 86042, 86043, 
    86044, 86045, 86046, 86047, 86048, 
    86049, 86050, 86051, 86052, 86053, 
    86054, 86055, 86056, 86057, 86058, 
    86059, 86060
  ) 
GROUP BY 
  cscart_products_categories.product_id

Query time 0.01634

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "129.31"
    },
    "grouping_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "5.60"
      },
      "nested_loop": [
        {
          "table": {
            "table_name": "cscart_categories",
            "access_type": "ALL",
            "possible_keys": [
              "PRIMARY",
              "c_status",
              "p_category_id"
            ],
            "rows_examined_per_scan": 208,
            "rows_produced_per_join": 8,
            "filtered": "4.00",
            "cost_info": {
              "read_cost": "20.72",
              "eval_cost": "0.83",
              "prefix_cost": "21.55",
              "data_read_per_join": "21K"
            },
            "used_columns": [
              "category_id",
              "usergroup_ids",
              "status",
              "storefront_id"
            ],
            "attached_condition": "((`nuie_scalesta_net`.`cscart_categories`.`storefront_id` in (0,1)) and ((`nuie_scalesta_net`.`cscart_categories`.`usergroup_ids` = '') or (0 <> find_in_set(0,`nuie_scalesta_net`.`cscart_categories`.`usergroup_ids`)) or (0 <> find_in_set(1,`nuie_scalesta_net`.`cscart_categories`.`usergroup_ids`))) and (`nuie_scalesta_net`.`cscart_categories`.`status` in ('A','H')))"
          }
        },
        {
          "table": {
            "table_name": "cscart_products_categories",
            "access_type": "ref",
            "possible_keys": [
              "PRIMARY",
              "link_type",
              "pt"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "category_id"
            ],
            "key_length": "3",
            "ref": [
              "nuie_scalesta_net.cscart_categories.category_id"
            ],
            "rows_examined_per_scan": 117,
            "rows_produced_per_join": 5,
            "filtered": "0.57",
            "cost_info": {
              "read_cost": "2.33",
              "eval_cost": "0.56",
              "prefix_cost": "121.75",
              "data_read_per_join": "89"
            },
            "used_columns": [
              "product_id",
              "category_id",
              "link_type"
            ],
            "attached_condition": "(`nuie_scalesta_net`.`cscart_products_categories`.`product_id` in (86011,86012,86014,86015,86017,86018,86019,86020,86021,86022,86023,86024,86025,86026,86027,86028,86029,86030,86031,86032,86033,86034,86035,86036,86037,86038,86039,86040,86041,86042,86043,86044,86045,86046,86047,86048,86049,86050,86051,86052,86053,86054,86055,86056,86057,86058,86059,86060))"
          }
        },
        {
          "table": {
            "table_name": "product_position_source",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY",
              "pt"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "category_id",
              "product_id"
            ],
            "key_length": "6",
            "ref": [
              "const",
              "nuie_scalesta_net.cscart_products_categories.product_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 5,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.40",
              "eval_cost": "0.56",
              "prefix_cost": "123.71",
              "data_read_per_join": "89"
            },
            "used_columns": [
              "product_id",
              "category_id",
              "position"
            ]
          }
        }
      ]
    }
  }
}

Result

product_id category_ids position
86011 7148,7207,7224M 0
86012 7148,7207,7224M 0
86014 7148,7207,7224M 0
86015 7148,7207,7224M 0
86017 7148,7207,7224M 0
86018 7148,7207,7224M 0
86019 7148,7207,7224M 0
86020 7148,7207,7224M 0
86021 7148,7207,7224M 0
86022 7148,7207,7224M 0
86023 7148,7207,7224M 0
86024 7148,7207,7224M 0
86025 7148,7207,7224M 0
86026 7148,7207,7224M 0
86027 7148,7207,7224M 0
86028 7148,7207,7224M 0
86029 7148,7207,7224M 0
86030 7148,7207,7224M 0
86031 7148,7207,7224M 0
86032 7148,7207,7224M 0
86033 7148,7207,7224M 0
86034 7148,7207,7224M 0
86035 7148,7207,7224M 0
86036 7148,7207,7224M 0
86037 7148,7207,7224M 0
86038 7148,7207,7224M 0
86039 7148,7207,7224M 0
86040 7148,7207,7224M 0
86041 7148,7207,7224M 0
86042 7148,7207,7224M 0
86043 7148,7207,7224M 0
86044 7148,7207,7224M 0
86045 7148,7207,7224M 0
86046 7148,7207,7224M 0
86047 7148,7207,7224M 0
86048 7148,7207,7224M 0
86049 7148,7207,7224M 0
86050 7148,7207,7224M 0
86051 7148,7207,7224M 0
86052 7148,7207,7224M 0
86053 7148,7207,7224M 0
86054 7148,7207,7224M 0
86055 7148,7207,7224M 0
86056 7148,7207,7224M 0
86057 7148,7207,7224M 0
86058 7148,7207,7224M 0
86059 7148,7207,7224M 0
86060 7148,7207,7224M 0