Delete query in oracle

103 Views Asked by At

can someone please help to put the below query in the liquibase syntax:

delete  from test_table t1
where exists (select emails from test_table t2
where t2.emails=t1.emails
and t2.rowid< t1.rowid);

----------
1

There are 1 best solutions below

0
On

I think only way to achieve this is put it inside a sql tag

   <sql >delete  from test_table t1
where exists (select emails from test_table t2
where t2.emails=t1.emails
and t2.rowid< t1.rowid)
</sql>