Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Peculiar results from a simple looking query.
OK, fine, 'The docs are a nice thing', I completely agree.
Now look at this:
create table aa(c varchar2(30))
Table created
insert into aa values('30-jUn-2004')
1 row inserted
insert into aa values('30-jUn-2007')
1 row inserted
select c from aa
C
select dump(c) from aa
DUMP(C)
Typ=1 Len=11: 51,48,45,106,85,110,45,50,48,48,55
2 rows selected
1 row selected
drop table aa
Table dropped
Do you have any explanations? Received on Thu Feb 24 2005 - 15:07:46 CST