home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.databases.oracle
- From: smj@jbecpor.demon.co.uk (Martin Jarvis)
- Path: sparky!uunet!pipex!demon!ALPHA!smj
- Subject: Re: Q: Duplicate records
- Organization: John Brown E&C Ltd
- X-Newsreader: Tin 1.1 PL4
- References: <1993Jan23.124513.26942@kaija.spb.su>
- Apparently-To: mail2news@news.demon.co.uk
- Date: Mon, 25 Jan 1993 17:42:48 +0000
- Message-ID: <C1F7vC.Huu@jbecpor.demon.co.uk>
- Sender: usenet@demon.co.uk
- Lines: 8
-
- Oracle's Technical Bulletin, March 1992
-
- DELETE FROM tablename
- WHERE ROWID NOT IN
- ( SELECT MAX(ROWID) FROM tablename
- GROUP BY keycolumn1, keycolumn2, etc )
-
-
-