1

この進行状況クエリを書くのに助けが必要です:最初に、aa=variableおよびab=variable2およびac=variable3 and((ad <> variable4 and ae <> variable5 and af <> variable6)/ *this"またはin "は、私が実行したいことの単なるsudecodeです* /または(最初のb no-lock where ba = variable and(bb=variable7またはbb=variable8 no-error)))no-error。`

「orin」は私が問題を抱えているものです。

4

3 に答える 3

2

作成するステートメントの種類を考えると、次の2段階のプロセスをお勧めします。

find first b no-lock where b.a = variable 
                           and (b.b = variable7 or b.b = variable8) no-error.

find first a no-lock where a.a = variable 
                           and a.b = variable2 
                           and a.c = variable3 
                           and ((a.d <> variable4 and a.e <> variable5 and a.f <> variable6) 
                                 or available b) 
             no-error.
于 2012-02-29T15:07:34.500 に答える
0

MSSQLクエリや一般的なスクリプトクエリのように考えすぎないでください。

test1.a=var1およびtest1.b=var2no-errorの各test1no-lockのように。

test1.a = var1および(test1.b=var2またはtest1.c=var3)no-errorである最初のtest1no-lockを見つけるのと同じです。//一度に1行だけを提供します。

于 2017-04-04T07:10:33.607 に答える
0

あなたが探しているステートメントは「見つけることができる」だと思います。

... or can-find(first b where b.a = a.a ...
于 2017-06-07T20:18:13.237 に答える