create table ch ( ch char(10) )
Table created.
drop table ch purge
Table dropped.
create table ch ( ch char(10) )
Table created.
create table vc ( vc varchar2(10) )
Table created.
drop table vc purge
Table dropped.
drop table ch purge
Table dropped.
create table ch ( ch char(10) )
Table created.
create table vc ( vc varchar2(10) )
Table created.
insert into ch values ('MICKEY')
1 row(s) inserted.
insert into ch values ('MICKEY ')
1 row(s) inserted.
insert into ch values ('MICKEY ')
1 row(s) inserted.
insert into vc values ('MICKEY')
1 row(s) inserted.
insert into vc values ('MICKEY ')
1 row(s) inserted.
insert into vc values ('MICKEY ')
1 row(s) inserted.
commit
Statement processed.
select ch, dump(ch) as ch_dump
from ch
CH | CH_DUMP | MICKEY | Typ=96 Len=10: 77,73,67,75,69,89,32,32,32,32 | MICKEY | Typ=96 Len=10: 77,73,67,75,69,89,32,32,32,32 | MICKEY | Typ=96 Len=10: 77,73,67,75,69,89,32,32,32,32 |
---|
select vc, dump(vc) as vc_dump
from vc
VC | VC_DUMP | MICKEY | Typ=1 Len=6: 77,73,67,75,69,89 | MICKEY | Typ=1 Len=8: 77,73,67,75,69,89,32,32 | MICKEY | Typ=1 Len=10: 77,73,67,75,69,89,32,32,32,32 |
---|
select ch, dump(ch) as ch_dump
, vc, dump(vc) as vc_dump
from ch
join vc
on vc.vc = ch.ch
CH | CH_DUMP | VC | VC_DUMP | MICKEY | Typ=96 Len=10: 77,73,67,75,69,89,32,32,32,32 | MICKEY | Typ=1 Len=10: 77,73,67,75,69,89,32,32,32,32 | MICKEY | Typ=96 Len=10: 77,73,67,75,69,89,32,32,32,32 | MICKEY | Typ=1 Len=10: 77,73,67,75,69,89,32,32,32,32 | MICKEY | Typ=96 Len=10: 77,73,67,75,69,89,32,32,32,32 | MICKEY | Typ=1 Len=10: 77,73,67,75,69,89,32,32,32,32 |
---|