I have a field called NUMBER
in a table called TEST
NUMBER is int(8) Unsigned Zerofill Not Null
I need negative numbers in this field now and I'd still like them zerofilled
For example -00023419
I can change it to signed, but can't seem to get zerofilled.
if I do: alter table test modify number int(8) signed zerofill not null
-
It stays unsigned zerofill
if I do: alter table test modify number int(8) zerofill not null
-
It stays unsigned zerofill
if I do: alter table test modify number int(8) signed not null
-
I get signed but no zerofill
When I had it set to signed, I put an a negative number then tried to change to zerofill and the number changed to 00000000
and everything was set to unsigned again. It it impossible to have signed zerofilled numbers?