http://dev.mysql.com/doc/refman/5.5/en/ ... types.html
Turns out the Float Type wont work for me, it does approximate values and rounds. I need to store exact, set numbers. But, the numbers like the one I posted in my OP, is created by combining two difference values (one before and after the decimal). Now, it occurred to me, that the number on the right will always be unique, but the number on the left can be repeated many times by other number combinations.
So like this: 4785.556448294
4785 = a value on left side of decimal that could be repeated in combination with many unique values on right side of the decimal.
. = the decimal that both separates AND combines the number into a unique total value.
556448294 = a value that is unique to a single database entity only. But which could have several different values on left side of decimal. Like 1275.556448294 or 3496.556448294, and then each of 1275 and 3496 could some time be on left side of many unique future numbers/entities in the DB.
So now I'm thinking instead what I should do, is have two different tables, with primary keys for each set of numbers, then a third table to combine/match numbers and create the entire number sequence (like with repeating number's id in one column, and unique numbers id in other column)... then how to combine it? I guess I need to figure out if I want the numbers to exist only separately in the database and then only be "combined/made whole" when PHP echos to the page, or do I want to have a 3rd/4th table that stores the combos in entirety as another entity?