PostgreSQL - PL/pgSQL Fundamentals
What is the purpose of the ELSIF keyword in PostgreSQL's IF control flow?
What is the purpose of the ELSIF keyword in PostgreSQL's IF control flow?
IF and ELSIFIF keyword tests the first condition. If it is false, ELSIF allows testing another condition.ELSIF from other keywordsELSIF is not for ending or unconditional execution; it is for additional conditional checks.IF condition is false -> Option AELSIF = additional condition test [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions