After performing a question with MySQL I have an answer with duplicates or triplets and quadruples and so on...
I need to extract one of the duplicates for example...
I receive the followng vector for example after doing one SELECT
|1|2|2|3|4|5|5|6|
I need to get |2|5|
And I need to do it with SQl-questions only... is it possible...
If I us ethe same SQL-string but with DESTINCT I would get
|1|2|3|4|5|6|
But I need the omitted ones
Can anyone help?
/Johan