Is there a reason why multiple AND statements are converted like this.

(stm1) & (stm2) & (stm3)

->

(((stm1) AND (stm2)) AND (stm3))

and not

((stm1) AND (stm2) AND (stm3))


Thanks in advance.

-- 
You received this message because you are subscribed to the Google Groups 
"python-sql" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to python-sql+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to