I have two statement sql for oracle 11gr2
sql1:
Select * from tableA inpt, tableB ptbs
where inpt.z='A'
AND (inpt.pid = ptbs.pid
AND inpt.instcd = ptbs.instcd);
sql2:
Select * from tableA inpt, tableB ptbs
where inpt.z='A'
AND inpt.pid = ptbs.pid
AND inpt.instcd = ptbs.instcd
Sql1 is faster than sql2?
The writing ... and ... and ... and ...
Slowly write and (... and ... and (... and ... and ...))
?
Similar to "or"?