Can anybody tell me how much more server capacity does a "bigint" column type take than an "int" column type?
The reason I ask is that I have a table that stores customer information. The customer id, which is the customer reference number, is a number that includes the year, month, and day the customer/user joins plus other digits.
The int column most likely will have enough storage capacity. But for my peace of mind I'm thinking about changing the column type from int to bigint. I'm just wondering how much more server capacity it would take in terms of storage and bandwidth.
The mysql version is: 4.0.24-max-log according to this:
$r = mysql_query('SELECT VERSION()');
$version = mysql_result($r, 0);
echo $version;
I would appreciate any information that anybody could provide.
Thanks.