この MySql クエリを MSSQL で実行したいと考えています。
このクエリを変更することで、それを達成する可能性はありますか?
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