InterviewSolution
Saved Bookmarks
| 1. |
How Will You Delete Duplicating Rows From A Base Table? |
|
Answer» DELETE from table_name where ROWID not in (SELECT max(rowid) from table group by delete from table_name where rowid not in (select max(rowid) from table group by |
|