Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a table like below
I need to find how many times, Numbers are getting duplicated. In this example , 410 coming 2 times , 300 coming 2 times and 209 coming 2 times.
So I need to Show Duplicates Entries as 3 which is 410,200,209
Any way to achieve this
Please use below:
NoConcatenateTemp:Load * Inline [ID,NumberSxS04, 410kxm41,309scu02, 105SxS04, 410bxm42,300bxm42,300skf41, 209rxm49, 209];
NoConcatenateTemp1:Load *,if(Number=Peek(Number),'Match','No match') as CheckResident TempOrder by Number desc;
NoConcatenateTemp2:Load *Resident Temp1Where match(Check,'Match');
Drop table Temp,Temp1;
Exit Script;