I'm trying to search multiple columns of text and memos for certain phrases and blacklist phrases I don't want to see.
Assume the following table
stories:
id, title, author, publisher, content
Ex. I want to find all stories that mention (in any field) 'apples' but blacklist 'applesauce'.
SELECT stories.id, [stories.title] & " " & [stories.author] & " " & [stories.publisher] & " " & [stories.memo] AS allMyText
FROM stories
WHERE ((([allMyText]) Like "*apples*" And ([allMyText]) Not Like "*applesauce*"));
How do I use my alias in the where clause? I can't find any documentation on the subject:
1) Is this approach possible?
2) Wouldn't the alternative mean that I'd be performing multiple string concatenations on every row iteration?
1.
Is this approach possible?Sure, put it in a subquery.
2.
Wouldn't the alternative mean that I'd be performing multiple string concatenations on every row iteration?Yes that is right, the alternative is to repeat the expression. I won't bore you with the code for this alternative.
For your particular query, you can also use this