sql - Not able to left join two tables using a non numeric column? ora-01722 -


i check, possible left join 2 tables using non numeric column?

i.e. descriptions_cd varchar(10) , table_cd varchar(10):

   select *       descriptions d  left join tables t on t.table_cd = d.descriptions_cd; 

this sql seems giving ora-01722 error. in oracle 9i.

can check values of 1 of these column contain numeric data (even if volumn type varchar) ?


Comments

Popular posts from this blog

haskell - Using filter on an item in a list? -

c# - When does PreApplicationStartMethod actually get triggered to run? -

tomcat6 - Exception when stopping container for a with Spring + Quartz + Tomcat web application -