Table rows I’m using:
`factid` int(11) NOT NULL,
`segid` int(11) NOT NULL,
PRIMARY KEY (`factid`,`segid`)
Here’s the steps of what I’m trying to accomplish:
- I need the total number of unique
segidvalues in the table. - I need a single
factidvalue. - This
factidvalue needs to have rows with many uniquesegidvalues. - ‘Many’ being closest to half the above total unique
segidvalues.
I hope this explains what I’m trying to accomplish. Help appreciated.
1 Answer