标签: sql sharepoint subquery caml
我想从sql查询创建一个caml查询。 sql查询包含来自同一列表的子查询。
我已经尝试了千种方法,但它不起作用。
查询是:
Select * from "list" where NameUser = (select NameUser from "list" where responsible = [Me])
Responsable字段是用户类型,NameUser字段的类型为string。
Responsable
NameUser
string
非常感谢。
亚历。