Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

joining two columns with different data types

645300Aug 18 2010 — edited Aug 18 2010
Hello experts,

I have two tables ...
     create table1
   (
     col1 varchar2(20)
    );
    
  create table2
    (
      col1 number(10)
    );  

  
with their data as below
          with table1 as
  (  select 'xx' col1 from dual union all 
     select 'yy' col1  from dual union all
     select '01' col1  from dual union all
     select '02' col1  from dual union all
     select '03' col1  from dual union all
     select '04' col1  from dual 
  ),table2 as 
   (
     select '01' col1 from dual union all
     select '02' col1 from dual union all
     select '03' col1 from dual union all
     select '04' col1 from dual 
    )
      
    
My question
how would i join table1.col1 to table2.col1?? since they are different data types ....i tried to use To_char but then i got 0 zero's,
is ther is any functions i can use ??


Thank you!!
This post has been answered by Frank Kulash on Aug 18 2010
Jump to Answer

Comments

Processing
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Sep 15 2010
Added on Aug 18 2010
3 comments
24,960 views