Oracle 10g
Hi
I have a table I created by importing from an excel spread sheet. I want to insert columns from this table into other oracle tables. All the columns from the spread sheet varchar.
Is it possible to insert the varchar values from the source table and convert the values to numbers as they are inserted?
This is what I have tried so far without any success;
INSERT INTO new_table (column_1) SELECT TO_NUMBER(COL1) FROM import_data;
Thank You
Ben