I want to run this MySql query in MSSQL.
Is there any possibility to achieve that, by modifying this query?
Select
sku,
(select group_concat(sku separator ",")
from catalog_product_entity as _e
where _e.entity_id in (select product_id from catalog_product_super_link as
superlink where e.entity_id = superlink.parent_id))
from catalog_product_entity as e
where type_id = "configurable"
group by sku