Hi all, I am facing some error on the database:
I declare a field in my database as VARCHAR(50), and i try to modify it to INTEGER(50), However i get this:
ERROR 1264 (22003): Out of range value adjusted for column 'MP1T' at row 2
And the field with data is as shown below:
+------+
| MP1T |
+------+
| 1 |
| |
| 4 |
| |
| 7 |
| |
| |
| 33 |
| 0 |
| |
| 2 |
| 2 |
| 3 |
| 0 |
| |
Because it contains nothing at row2, i try to declare as not null but fail. Anyone? Thanks