A very easy one for someone, The following insert is giving me the
ORA-01722: invalid number
why?
INSERT INTO C
Here's one way to solve it. Remove non-numeric characters then cast it as a number.
cast(regexp_replace('0419 853 694', '[^0-9]+', '') as number)