I'm new to Oracle APEX and I'm trying to run a simple SQL script in my application to update some data in the database. Here's the script I'm using:
START TRANSACTION;
SELECT MAX(SAL) FROM Employee;
UPDATE Employee SET SAL = SAL * 100;
COMMIT;
However, I'm encountering the following error:
ORA-00900: invalid SQL statement
ORA-06512: at "SYS.WWV_DBMS_SQL_APEX_230100", line 797
ORA-06512: at "SYS.DBMS_SYS_SQL", line 1658
ORA-06512: at "SYS.WWV_DBMS_SQL_APEX_230100", line 782
ORA-06512: at "APEX_230100.WWV_FLOW_DYNAMIC_EXEC", line 2035
I searched on the internet to get a solution. But I couldn't find anything Similler. I want to know why this is'nt working.
