my Query ended with the Error "ora-00933 sql command not properly ended"
The Query:
create table tmp_cleaner
as (
SELECT dd.bigtriggerid
FROM documentdata dd
inner join ipl_bigtrigger bt on dd.bigtriggerid = bt.triggerid
inner join documentinfo di on dd.bigtriggerid = di.bigtriggerid
where bt.processed = 'T'
and di.status in (1, 2)
and bt.processdatetime <= add_months(sysdate, -3));
Delete FROM documentdata where exists (select bigtriggerid from tmp_cleaner where bigtriggerid = documentdata.bigtriggerid);
Error in Line 9. (last line)
ora-00933 sql command not properly ended
Where is my mistake? should i use trunc with date?
I tried to put the Join-Operators in ()
There's nothing wrong with that code.
Sample tables:
Your query, as is:
Could you provide some context? Where did you run that piece of code?
There's nothing wrong with
delete
either (apart from the fact that you're using a new table in the subquery; shouldn't that betmp_cleaner
you've just created?):