Stargazer77
Programmer
CREATE VIEW DECODE<br>AS SELECT STUDENT#,<br> DECODE ( GRADE,<br> 'A', '4.0'<br> 'A-', 3.67<br> 'B+', 3.33<br> 'B', 3.0<br> 'B-', 2.67<br> 'C+', 2.33<br> 'C', 2.0<br> 'C-', 1.67<br> 'D', 1.33<br> 'E', 1.0<br> 'F', 0 )<br> FROM STUDENT_SCHEDULE;<br> <br><br>This isn't working......it says it is missing a right parenthesis before the 'A'......I put one but it says it needs another one right after the 'A'...