使用c# odp时候对不同长度的Number字段操作时,
如果字段长度不相等,拼写sql语句让这两个字段相等,会抛出异常。举例来说:
如果table1有字段 col,精度为number(10)
如果table2有字段 col,精度为number(12)
语句:select table1.col1, table2.col2 from table1, table2 where table1.col1=table2.col1
会抛出异常, 如何解决这个问题啊。谢谢