How does the statement below executes? It has 2 conditions the first on “NAME” and the second on “VALUE”. If the first condition is never true does it NOT execute the second condition, thus never executing the select “SELECT VALUE FROM SOMETABLE”.
Any insight would be helpful.
SELECT A FROM ITEM_TABLE
WHERE NAME = ‘NO RESULT’ AND VALUE IN (SELECT VALUE FROM SOMETABLE)
Thank you
Any insight would be helpful.
SELECT A FROM ITEM_TABLE
WHERE NAME = ‘NO RESULT’ AND VALUE IN (SELECT VALUE FROM SOMETABLE)
Thank you