hi, I´m using oracle,
I´d like to have the repeated columns
example:
I´d like to have this result:Code:id value 1 5 2 5 3 8 4 9 5 3 6 8
any help?Code:value 5 8
thanks
| SitePoint Sponsor |
hi, I´m using oracle,
I´d like to have the repeated columns
example:
I´d like to have this result:Code:id value 1 5 2 5 3 8 4 9 5 3 6 8
any help?Code:value 5 8
thanks




Code:select value from t group by value having count(*) > 1
Bookmarks