我正在学习 XQuery,我需要一些帮助来将我的 SQL 命令转换为 XQuery。
下面是我的sql
Select distinct(insurance_plan_identifier) from Staging_Insurance_Plan
where <xxxxx> = …
group by ‘State’
到目前为止我已经尝试过:
for $name in doc()//*:Staging_Insurance_Plan//*:insurance_plan_identifier
where $name='1234'
return {$c/state}