select * from table_name
where BaseDocEntry=15 and BaseDocType='PRRH' and ItemCode='TestStudy2'
and WhseCode='01' and (currentdoctype<>'PUSH' and CurrentDocEntry<>15)
根据我上面写的查询,将获取来自 INS2 的数据,不包括 currentdoctype [PUSH] 和 CurrentDocEntry 不是 15 的所有数据。我希望我的查询是,它必须排除数据只有当这种组合即currentdoctype=PUSH 和 CurrentDocEntry=15 出现在同一行中,然后排除该行。
你能修复这个查询吗?