I'm doing an oracle sql programming course atm and have been learning everything from the oracle manuals, however the code in chapter 7 doesn't work on the iacademy oracle application express website.
SELECT employee_id, last_name, salary, department_id
FROM employees
WHERE employee_id = &employee_number
This is the given code and I have been told it should work but when I type it into the webpage it says "ORA-01008: not all variables bound".
Any ideas? It seems very incompetetant of oracle to either provide code that doesn't work or run a website that doesn't execute it properly.
SELECT employee_id, last_name, salary, department_id
FROM employees
WHERE employee_id = &employee_number
This is the given code and I have been told it should work but when I type it into the webpage it says "ORA-01008: not all variables bound".
Any ideas? It seems very incompetetant of oracle to either provide code that doesn't work or run a website that doesn't execute it properly.