What is best depends on which parts of it you are going to most commonly want to access, manipulate and sort and whether you don't want to "waste" any storage bits.
If you want to store it as a single entity (or keep it of fixed length and with any numeric parts thus having leading zeros) then you must store it as a text string.
The left three characters and the right four characters could be saved as numeric integer, single or double values (with each of these using up more memory per value).
Whether stored as three fields or as one field the constituent parts can be reassembled using all the basic string manipulation techniques.




Reply With Quote






