nebakanezer
Technical User
Hi, im trying to find the module with the highest exam mark. Anyone spot the error.
SQL> select mname, X.cmark, Y.cmark from result X,result Y, module
2 where result.mcode = module.mcode
3 and X.cmark > Y.cmark;
where result.mcode = module.mcode
*
ERROR at line 2:
ORA-00904: "RESULT"."MCODE": invalid identifier
thanx.
SQL> select mname, X.cmark, Y.cmark from result X,result Y, module
2 where result.mcode = module.mcode
3 and X.cmark > Y.cmark;
where result.mcode = module.mcode
*
ERROR at line 2:
ORA-00904: "RESULT"."MCODE": invalid identifier
thanx.