I have a table studentDB with below fields
select sid, sname, sDOB from Student
I have seen this is many place, what is difference between (xx,yy) vs AND, and which one is more performance wise better
select * from Student where (sid,sname) = (101,'foo')
vs
select * from Student where sid = 101 AND sname = 'foo'
And also what is name of this operator () when using for matching?