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 = 20 
WHERE 
  cscart_products_categories.product_id IN (
    99, 97, 98, 91, 96, 182, 451, 454, 453, 
    457, 701, 702, 708, 228, 452, 447, 829, 
    769, 831, 818, 847, 774, 833, 368, 432, 
    433, 434, 435, 436, 437, 438, 439, 440, 
    441, 442, 443, 444, 445, 446, 369, 417, 
    418, 419, 420, 421, 422, 423, 424
  ) 
GROUP BY 
  cscart_products_categories.product_id

Query time 0.00073

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.178653694,
    "nested_loop": [
      {
        "table": {
          "table_name": "cscart_products_categories",
          "access_type": "range",
          "possible_keys": ["PRIMARY", "pt"],
          "key": "pt",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "loops": 1,
          "rows": 52,
          "cost": 0.0489205,
          "filtered": 100,
          "attached_condition": "cscart_products_categories.product_id in (99,97,98,91,96,182,451,454,453,457,701,702,708,228,452,447,829,769,831,818,847,774,833,368,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,369,417,418,419,420,421,422,423,424)",
          "using_index": true
        }
      },
      {
        "table": {
          "table_name": "cscart_categories",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY", "c_status", "p_category_id"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["category_id"],
          "ref": [
            "u428615623_ecartifygonje.cscart_products_categories.category_id"
          ],
          "loops": 52,
          "rows": 1,
          "cost": 0.04733008,
          "filtered": 100,
          "attached_condition": "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')"
        }
      },
      {
        "table": {
          "table_name": "product_position_source",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY", "pt"],
          "key": "PRIMARY",
          "key_length": "6",
          "used_key_parts": ["category_id", "product_id"],
          "ref": [
            "const",
            "u428615623_ecartifygonje.cscart_products_categories.product_id"
          ],
          "loops": 52,
          "rows": 1,
          "cost": 0.04896848,
          "filtered": 100
        }
      }
    ]
  }
}

Result

product_id category_ids position
91 20M 0
96 20M 0
97 20M 0
98 20M 0
99 20M 0
182 20M 0
228 18,20M 0
368 20M 0
369 20M 0
417 20M 0
418 20M 0
419 20M 0
420 20M 0
421 20M 0
422 20M 0
423 20M 0
424 20M 0
432 20M 0
433 20M 0
434 20M 0
435 20M 0
436 20M 0
437 20M 0
438 20M 0
439 20M 0
440 20M 0
441 20M 0
442 20M 0
443 20M 0
444 20M 0
445 20M 0
446 20M 0
447 20M 0
451 20M 0
452 20M 0
453 20M 0
454 20M 0
457 20M 0
701 20,18M 0
702 20,18M 0
708 20,18M 0
769 20M 0
774 20M 0
818 20M 0
829 20M 0
831 20M 0
833 20M 0
847 20M 0