Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Peculiar results from a simple looking query.

Re: Peculiar results from a simple looking query.

From: <ak_tiredofspam_at_yahoo.com>
Date: 24 Feb 2005 13:07:46 -0800
Message-ID: <1109279266.780711.317840@g14g2000cwa.googlegroups.com>


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



30-jUn-2004
30-jUn-2007
2 rows selected

select dump(c) from aa
DUMP(C)



Typ=1 Len=11: 51,48,45,106,85,110,45,50,48,48,52

Typ=1 Len=11: 51,48,45,106,85,110,45,50,48,48,55

2 rows selected


Typ=1 Len=11: 51,48,45,106,85,110,45,50,48,48,52

1 row selected    

drop table aa
Table dropped  

Do you have any explanations? Received on Thu Feb 24 2005 - 15:07:46 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US