con un campo INT unsigned riesci a memorizzare questo numero:
3395466584
però se tratti numeri maggiori di 4294967295 hai dei problemi.
INT richiede 4 bytes;
BIGINT richiede 8 bytes;
VARCHAR richiede L+1 bytes, quindi 3395466584 => 10 cifre => 11 bytes.

Rispondi quotando