I have a table which have IP ranges assigned to a country. however it is very difficault to join this table with a particular IP address/number. So I wanted to expand the values in this table.
Current range table:
IP_BIGIN_RANGE IP_END_RANGE CNTRY
1 1000000 AB
1000001 7000000 CD
ETC.
I want to get:
IP_NUM IP_BIGIN_RANGE IP_END_RANGE CNTRY
1 1 1000000 AB
2 1 1000000 AB
3 1 1000000 AB
.
.
1000001 1000001 7000000 CD
1000002 1000001 7000000 CD
ETC.
Thank you for your help.
Ted
↧