You have a table as follows:
FullName: String
LikesDogs: Bool
LikeCats: Bool
You run an animal sanctuary and need to make a query to lists everyone apart from those that DO like dogs but DO NOT like cats. Eg, everything apart from LikesDogs=TRUE And LikesCats=FALSE.
How is this possible? I want this to be an exclusion criteria rather than a series of:
LikesDogs=FALSE And LikesCats=False
LikesDogs=FALSE and LikesCats=True
LikesDogs=TRUE and LikesCats=True
...as criteria
I've solved this now and although I'm ashamed at how simple the solution was, it took me an embarrassing amount of time to come up with it
FullName: String
LikesDogs: Bool
LikeCats: Bool
You run an animal sanctuary and need to make a query to lists everyone apart from those that DO like dogs but DO NOT like cats. Eg, everything apart from LikesDogs=TRUE And LikesCats=FALSE.
How is this possible? I want this to be an exclusion criteria rather than a series of:
LikesDogs=FALSE And LikesCats=False
LikesDogs=FALSE and LikesCats=True
LikesDogs=TRUE and LikesCats=True
...as criteria
I've solved this now and although I'm ashamed at how simple the solution was, it took me an embarrassing amount of time to come up with it