So, what you're saying is MYSQL or is exclusive? unlike PHP? Try xor instead
No, this is not the concept of exclusive or. I think ElArZ is referring to the lazy evaluation of OR (and AND) in some common programming languages (C, C++, Java, PHP, etc).
It is the reason why we can write things like:
mysql_query($query) or die(":P");
and yet not have the script die on us if the call to mysql_query() returns a value that can be evaluated to true (i.e., a result resource instead of false).
Like Piranha, I would like to see why ElArZ thinks lazy evaluation is needed in SQL. Concrete examples are preferred.