Do these WHERE statements have any difference?

Hello

Is there any difference between:
WHERE Col1=1
AND Col2=1
AND Col3=1

and

WHERE (Col1=1 AND Col2=1)
AND Col3=1

Thanks!

No difference

2 Likes