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

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -