Building on this answer: https://stackoverflow.com/a/2349824/1382306
Are there further guidelines in A and B's usages, or are they equally important?
I have a SELECT FROM table1, table2 WHERE table2.table1id = table1.id AND table2.constant = ?
.
In my case, I know that ? is from a user-defined variable. Does that make a difference since it never changes?
Could I push my luck and ask for an explanation of the logic used against (A,B) and (B), like "all Bs are found that have As, and all Bs are searched next".
Many thanks in advance!