- 1
first question IN, NOT IN Statements
and see one error in this question , it is "And" but in the list of elements i have "OR"
3 Answers
+ 1
it is all about logic
1 AND 1 = 1
(0 AND 1 ) OR (1 AND 0) OR (0 AND 0)  = 0
(0 OR 0) = 0
(1 OR 1) AND (1 OR 0) AND (0 OR 1) = 1
AND                OR
--------           -------
0 - 0   0          0 - 0   0
1 - 0    0          1 - 0    1
0 - 1    0          0 - 1    1
1 - 1     1           1 - 1     1
When you understand AND  and OR  now  NOT and NOT IN means more meanful
WHERE X NOT true
WHERE values NOT IN (x,y,z)
0
Write down the question
0
I said to write down the question you're talking about, or at least to refer to it. I have no idea what you're trying to say. What question and in what course is this ?



