I am creating a "Basic Search" bar that users can type in terms. I am unsure of the order of operations for boolean logic.
If someone types terms(With no quotes):
A and B or C
What is the correct way to treat this?
(A and B) or (C)
OR
(A) and (B or C)