I have the simple query:
SELECT t1.JOB_ID
FROM
(
select 1 as JOB_ID
from JOBS2
) as t1
INNER JOIN
(
SELECT 2 AS JOB_ID
from JOBS
) as t2 ON t1.JOB_ID = t2.JOB_ID;
and I have this error:
Error: ORA-00933: SQL command not properly ended
is it because of the syntax? or it's another problem?