Oracle 8i, HP UX server. Can someone tell me the difference (if any) between the oracle UNIQUE and DISTINCT keywords? They seem to work exactly the same. If I say:
SELECT UNIQUE(COLUMN) FROM TABLE
i get the same results as saying
SELECT DISTINCT(COLUMN) FROM TABLE
Is there some internal difference in how to two of them operate on the tables they are selecting from or something? thanks.
Start Free Trial