There are many question on the topic but I think the comparison below is harder to find.
Let us assume that all variables in this example are binary for the sake of simplicity. The typical academic Bayes formula given two random variables is the following:
$$ \Pr(A|B) = \frac{\Pr(B|A) \Pr(A)}{\Pr(B|A) \Pr(A) + \Pr(B| \overline{A}) \Pr(\overline{A})} $$
However, searches on this site suggest that the denominator in Naive Bayes given three random vars is the following:
$$ \Pr(A|B,C) = \frac{\Pr(B|A) \Pr(C|A) \Pr(A)}{ \Pr(C|B)\Pr(B) + \Pr(B|C)\Pr(C) } $$
Where is the $A$ r.v. in the denominator of the Naive Bayes?