I searched a lot for this simple operation. But I could not get an answer. I have a simple query:
select column1, column2...
from table1
where condition1 and condition2 and condition3
The above query will returns some rows if all the conditions are true.
My question is whether it will give result as 'Fail' once it found the first condition (condition1) is failed?
The execution of rest of the operations is meaning less and it will take more time if the second and third conditions have huge operations.
Can you please explain this operations?