assassinator
16th June 2011, 09:06
I want to consult, about statistical data reproduction method
Now one table had defined Items and so many versions. The versions would have the possibility to be redundant. I need to discover redundant record.
Exp:
Item Version.
-----------------------------
Item_1 01
Item_1 02
Item_1 02
Item_1 03
select item, count(ver):ver.num
from table1
group by item
The ver.num returns value is 4, I want to obtain 3, has any realization method?
Now one table had defined Items and so many versions. The versions would have the possibility to be redundant. I need to discover redundant record.
Exp:
Item Version.
-----------------------------
Item_1 01
Item_1 02
Item_1 02
Item_1 03
select item, count(ver):ver.num
from table1
group by item
The ver.num returns value is 4, I want to obtain 3, has any realization method?