select * from tableA a where a.rowid>=(select min(rowid) from tableB b where a.column=b.column)
delete from tableA a where a.rowid>=(select min(rowid) from tableB b where a.column=b.column)
select * from tableA a where a.rowid>=(select min(rowid) from tableB b where a.column=b.column)
delete from tableA a where a.rowid>=(select min(rowid) from tableB b where a.column=b.column)