I want to put two totally different numbers like 01234567890
and 1234567890
So I made this code on SQL/Sybase
create table DOCTORS(
document bigint not null ,
);
GO
Insert into DOCTORS values(CONVERT(INT, '01234567890'))
Insert into DOCTORS values(CONVERT(INT, '1234567890'))'
But when I do a select
, it shows me:
document
--------
1234567890
----------
1234567890
instead of
document
--------
01234567890
----------
123456789