我需要执行 "ORDER BY",但 Azure 表示不支持
I need to perform a "ORDER BY", but Azure says it is not supported
下面是我的示例:
SELECT f.id 作为家人,c.FirstName 作为 child,p.GivenName 作为宠物
来自家庭 f
加入 c f.Children
加入 p c.Pets
其中 p.GivenName = 'Fluffy'
按c.FirstName
排序
"Order-by over correlated collections is not supported" 表示 JOIN 和 Order by 子句是 not supported
在一起。
您需要考虑根据需要更改数据模型。
下面是我的示例:
SELECT f.id 作为家人,c.FirstName 作为 child,p.GivenName 作为宠物 来自家庭 f 加入 c f.Children 加入 p c.Pets 其中 p.GivenName = 'Fluffy' 按c.FirstName
排序"Order-by over correlated collections is not supported" 表示 JOIN 和 Order by 子句是 not supported
在一起。
您需要考虑根据需要更改数据模型。