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 = 7156 
WHERE 
  cscart_products_categories.product_id IN (
    96623, 96624, 96678, 96694, 97083, 97219, 
    97220, 97221, 97222, 97223, 97224, 
    97225, 97226, 97227, 97567, 97570, 
    97573, 97576, 97577, 97578, 97579, 
    97580, 97582, 97583, 97584, 97585, 
    97586, 97728, 97729, 97730, 97731, 
    97732, 97733, 97734, 97735, 97736, 
    97737, 97738, 97739, 97740, 97741, 
    97742, 97778, 97779, 97780, 97781, 
    97782, 97790, 97791, 97792, 97793, 
    97794, 97875, 97876, 97877, 97878, 
    97879, 97880, 97881, 97882, 97886, 
    97888, 98001, 98002, 98003, 98004, 
    98005, 98006, 98007, 98008, 98009, 
    98010, 98011, 98012, 98013, 98014, 
    98015, 98016, 98017, 98018, 98019, 
    98020, 98021, 98022, 98023, 98176, 
    98177, 98178, 98179, 98180, 98181, 
    98182, 98183, 98184, 98185, 98186
  ) 
GROUP BY 
  cscart_products_categories.product_id

Query time 0.01569

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "134.50"
    },
    "grouping_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "9.45"
      },
      "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": 9,
            "filtered": "0.97",
            "cost_info": {
              "read_cost": "2.33",
              "eval_cost": "0.94",
              "prefix_cost": "121.75",
              "data_read_per_join": "151"
            },
            "used_columns": [
              "product_id",
              "category_id",
              "link_type"
            ],
            "attached_condition": "(`nuie_scalesta_net`.`cscart_products_categories`.`product_id` in (96623,96624,96678,96694,97083,97219,97220,97221,97222,97223,97224,97225,97226,97227,97567,97570,97573,97576,97577,97578,97579,97580,97582,97583,97584,97585,97586,97728,97729,97730,97731,97732,97733,97734,97735,97736,97737,97738,97739,97740,97741,97742,97778,97779,97780,97781,97782,97790,97791,97792,97793,97794,97875,97876,97877,97878,97879,97880,97881,97882,97886,97888,98001,98002,98003,98004,98005,98006,98007,98008,98009,98010,98011,98012,98013,98014,98015,98016,98017,98018,98019,98020,98021,98022,98023,98176,98177,98178,98179,98180,98181,98182,98183,98184,98185,98186))"
          }
        },
        {
          "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": 9,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "2.36",
              "eval_cost": "0.94",
              "prefix_cost": "125.05",
              "data_read_per_join": "151"
            },
            "used_columns": [
              "product_id",
              "category_id",
              "position"
            ]
          }
        }
      ]
    }
  }
}

Result

product_id category_ids position
96623 7157M,7341,7342,7343
96624 7157M,7341,7342,7343
96678 7157M,7341,7342,7343
96694 7157M,7341,7342,7343
97083 7157M,7341,7342,7343
97219 7157M,7341,7342,7343
97220 7157M,7341,7342,7343
97221 7157M,7341,7342,7343
97222 7157M,7341,7342,7343
97223 7157M,7341,7342,7343
97224 7157M,7341,7342,7343
97225 7157M,7341,7342,7343
97226 7157M,7341,7342,7343
97227 7157M,7341,7342,7343
97567 7157M,7341,7342,7343
97570 7157M,7341,7342,7343
97573 7157M,7341,7342,7343
97576 7157M,7341,7342,7343
97577 7157M,7341,7342,7343
97578 7157M,7341,7342,7343
97579 7157M,7341,7342,7343
97580 7157M,7341,7342,7343
97582 7157M,7341,7342,7343
97583 7157M,7341,7342,7343
97584 7157M,7341,7342,7343
97585 7157M,7341,7342,7343
97586 7157M,7341,7342,7343
97728 7194M
97729 7194M
97730 7194M
97731 7194M
97732 7194M
97733 7194M
97734 7194M
97735 7194M
97736 7194M
97737 7194M
97738 7194M
97739 7194M
97740 7194M
97741 7194M
97742 7194M
97778 7194M
97779 7194M
97780 7194M
97781 7194M
97782 7194M
97790 7194M
97791 7194M
97792 7194M
97793 7194M
97794 7194M
97875 7157M,7341,7342,7343
97876 7157M,7341,7342,7343
97877 7157M,7341,7342,7343
97878 7157M,7341,7342,7343
97879 7157M,7341,7342,7343
97880 7157M,7341,7342,7343
97881 7157M,7341,7342,7343
97882 7157M,7341,7342,7343
97886 7157M,7341,7342,7343
97888 7157M,7341,7342,7343
98001 7157M,7341,7342,7343
98002 7194M
98003 7194M
98004 7194M
98005 7194M
98006 7194M
98007 7194M
98008 7194M
98009 7194M
98010 7194M
98011 7194M
98012 7194M
98013 7194M
98014 7194M
98015 7194M
98016 7194M
98017 7194M
98018 7194M
98019 7194M
98020 7194M
98021 7194M
98022 7194M
98023 7194M
98176 7157M,7341,7342,7343
98177 7157M,7341,7342,7343
98178 7157M,7341,7342,7343
98179 7157M,7341,7342,7343
98180 7157M,7341,7342,7343
98181 7157M,7341,7342,7343
98182 7157M,7341,7342,7343
98183 7157M,7341,7342,7343
98184 7157M,7341,7342,7343
98185 7157M,7341,7342,7343
98186 7157M,7341,7342,7343