PostgreSQL - PL/pgSQL Fundamentals
Consider this PostgreSQL code snippet inside a function:
IF score >= 90 THEN result := 'A'; ELSIF score >= 80 THEN result := 'B'; ELSIF score >= 70 THEN result := 'C'; ELSE result := 'F'; END IF;
If score is 85, what will be the value of result after execution?
