Number Data Type Column does not display number as it was entered [message #462819] |
Mon, 28 June 2010 00:36 |
mkhalil
Messages: 108 Registered: July 2006 Location: NWFP Peshawar Pakistan
|
Senior Member |
|
|
Dear fellows,
All of you have always helped me in my crusial times. I really very thankfull.
Now i have a problem which i am facing for the first time. The problem is:
I have created a table test1 with two column of number data type and the column witdth is 25. Then enter the data but when i select the recrod it does not display the column data as it was entered.
SQL> create table test1
2 (
3 startno number(25),
4 endno number(25)
5 );
Table created.
SQL> insert into test1
2 values(8992020404050503030900,8992020404050503031000);
1 row created.
SQL> select * from test1;
STARTNO ENDNO
--------- ---------
8.992E+21 8.992E+21
SQL>
I have also searched the forum but not found the solution.
Would any body please help me in this regard?
Muhammad Khalil
[Updated on: Mon, 28 June 2010 00:39] Report message to a moderator
|
|
|
|
|
|
|
|