I created a table in mysql :
Now when I insert into the table,
the 0 dosen't get inserted and the value appears as 1234.
Can anyone tell me how to insert 0 in the begining ?
| Code: |
| create table mytab(phone int); |
Now when I insert into the table,
| Code: |
| insert into mytab values(01234); |
Can anyone tell me how to insert 0 in the begining ?
