I have a table that stores mobile numbers
it stores
country
network
the rest
so an example mobile, or masked is
64 21 8229918 CC NN XXXXXXX
Now,
Country makes sense to be called country
Network to be called Network
But what would you call the rest?
I am redesigning the database so I want this to be as accurately named as possible. I can use multiple words in camel case.
Any ideas?
also,
A country code is only ever digits, and I believe at most 4?
so should I use type int?
same applies for network.
and what about the rest?
I have no idea how long it could get...