I have a table of class B IPs.
Example table:
1.1
1.2
1.3
14.2
14.4
14.57
242.10
The total records for each class A are random, some few, some many.
I need to determine how many class As have 256 entries in the table (meaning the entire class A is contained in the table).
So I need to select each class A in the table like 1.%, 2.%, etc
Then count how many records exist for that particular class A
Then return entries that have a count of 256.
Example output showing Class A 1, 14, and 242 having 256 entries:
1
14
242
Thanks in advance.