【业务表】有“承办团队”和“归档时间”一列
希望加载数据时,加载“归档时间”为空且“承办团队”等于User.Group,或“归档时间”在一年内且承办团队等于User.Group的记录。
该怎么写呢?主要是不知道 and 和 or 的判断优先顺序
Dim SD As Date = Date.Today().AddDays(-365)e.SelectString = "Select * From {业务表} Where [归档时间] is null and [承办团队] =" & User.Group & " Or [归档时间] > #" & SD & "# and [承办团队] =" & User.Group
这样写 对么?