oracle查詢表內的重複數據,並刪除重複數據

 ---查詢重複數據: select * from user_tab u where u.aa003 in (select u.aa003 from user_tab u group by u.aa003 having count(*) > 1) ----刪除重複數據: delete from user_tab w
相關文章
相關標籤/搜索