RE: how we can eliminate duplicates without using distinct command?
select * from tale_name a where rowid >any(select rowid from table_name b where a.col1 b.col1) this query show duplicate record ina table and use delete command to eleminate duplicate record in the table.