我想在 MSSQL 中运行这个 MySql 查询。
通过修改此查询是否有可能实现这一目标?
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