Hello,
I have a several values in the table but some of them are repeated. Is there any way to take only unique values?
An example table:
483568932
345734745
435743574
435743574
435743574
324573457
345737345
345737345
345688568
And I need that as the output:
483568932
345734745
435743574
324573457
345737345
345688568
Or maybe there is any possibility to check if the value is in the table before adding, and if it is, then go to the next value...?
Thank you.


