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 = 13 
WHERE 
  cscart_products_categories.product_id IN (
    1705, 1704, 1609, 1935, 1936, 1929, 1528, 
    1527, 1526, 1508, 1534, 1533, 1841, 
    1531, 1529, 1530, 1843, 1532, 1515, 
    1904, 1873, 1897, 1896, 1728, 1607, 
    1608, 1606, 1703, 1578, 1396, 1605, 
    1206, 1586, 1934, 1932, 1933, 1656, 
    1542, 1640, 1543, 1655, 1927, 1926, 
    1815, 1808, 1541, 1829, 1828, 1675, 
    1931, 1544, 1845, 1540, 1512, 1525, 
    1536, 1538, 1937, 1581, 1582, 1838, 
    1938, 1830, 1514, 1835, 1678, 1693, 
    1711, 1699, 1698, 1869, 1834, 1833, 
    1928, 1537, 1539, 1436, 1411, 1397, 
    1741, 1330, 1486, 1546, 1651, 1661, 
    255, 1742, 1598, 1565, 1597, 1708, 1694, 
    1732, 1596, 1632, 1618
  ) 
GROUP BY 
  cscart_products_categories.product_id

Query time 0.00292

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "table_name": "cscart_products_categories",
      "access_type": "range",
      "possible_keys": ["PRIMARY", "pt"],
      "key": "pt",
      "key_length": "3",
      "used_key_parts": ["product_id"],
      "rows": 98,
      "filtered": 100,
      "index_condition": "cscart_products_categories.product_id in (1705,1704,1609,1935,1936,1929,1528,1527,1526,1508,1534,1533,1841,1531,1529,1530,1843,1532,1515,1904,1873,1897,1896,1728,1607,1608,1606,1703,1578,1396,1605,1206,1586,1934,1932,1933,1656,1542,1640,1543,1655,1927,1926,1815,1808,1541,1829,1828,1675,1931,1544,1845,1540,1512,1525,1536,1538,1937,1581,1582,1838,1938,1830,1514,1835,1678,1693,1711,1699,1698,1869,1834,1833,1928,1537,1539,1436,1411,1397,1741,1330,1486,1546,1651,1661,255,1742,1598,1565,1597,1708,1694,1732,1596,1632,1618)"
    },
    "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": ["bacpvdev_db.cscart_products_categories.category_id"],
      "rows": 1,
      "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", "bacpvdev_db.cscart_products_categories.product_id"],
      "rows": 1,
      "filtered": 100
    }
  }
}

Result

product_id category_ids position
255 13M 0
1206 13M 0
1330 13M 0
1396 13M 0
1397 13M 0
1411 13M 0
1436 13M 0
1486 13M 0
1508 13M 0
1512 13M 0
1514 13M 0
1515 13M 0
1525 13M 0
1526 13M 0
1527 13M 0
1528 13M 0
1529 13M 0
1530 13M 0
1531 13M 0
1532 13M 0
1533 13M 0
1534 13M 0
1536 13M 0
1537 13M 0
1538 13M 0
1539 13M 0
1540 13M 0
1541 13M 0
1542 13M 0
1543 13M 0
1544 13M 0
1546 13M 0
1565 13M 0
1578 13M 0
1581 13M 0
1582 13M 0
1586 13M 0
1596 13M 0
1597 13M 0
1598 13M 0
1605 13M 0
1606 13M 0
1607 13M 0
1608 13M 0
1609 13M 0
1618 13M 0
1632 13M 0
1640 13M 0
1651 13M 0
1655 13M 0
1656 13M 0
1661 13M 0
1675 13M 0
1678 13M 0
1693 13M 0
1694 13M 0
1698 13M 0
1699 13M 0
1703 13M 0
1704 13M 0
1705 13M 0
1708 13M 0
1711 13M 0
1728 13M 0
1732 13M 0
1741 13M 0
1742 13M 0
1808 13M 0
1815 13M 0
1828 13M 0
1829 13M 0
1830 13M 0
1833 13M 0
1834 13M 0
1835 13M 0
1838 13M 0
1841 13M 0
1843 13M 0
1845 13M 0
1869 13M 0
1873 13M 0
1896 13M 0
1897 13M 0
1904 13M 0
1926 13M 0
1927 13M 0
1928 13M 0
1929 13M 0
1931 13M 0
1932 13M 0
1933 13M 0
1934 13M 0
1935 13M 0
1936 13M 0
1937 13M 0
1938 13M 0