I have the following WHERE part of a query
What I want to include in the query is all records where TAB_NO "7", "11" and "14" all have a TAB_SCORE which is either Null or <>"1" and an ASS_COMPLETE value which <>"2".
Can anybody help with how this should be compiled? Have tried lots of combinations but either get multiple rows comin gback or nothing at all!!
Thanks in advance
Jonathan
Code:
WHERE (((CLIENT_ASS_TAB_DETAILS.TAB_NO)="14") AND ((CLIENT_ASS_TAB_DETAILS.TAB_SCORE) Is Null Or (CLIENT_ASS_TAB_DETAILS.TAB_SCORE)<>"1") AND ((CLIENT_ASSESSMENT_HEADER.ASS_COMPLETE)<>"2"))
What I want to include in the query is all records where TAB_NO "7", "11" and "14" all have a TAB_SCORE which is either Null or <>"1" and an ASS_COMPLETE value which <>"2".
Can anybody help with how this should be compiled? Have tried lots of combinations but either get multiple rows comin gback or nothing at all!!
Thanks in advance
Jonathan