So if I have the following fields in two different tables
TABLE 1 | TABLE 2
Itm_ID (VARCHAR2) | Itm_ID (NUMBER)
99-11-22 | 991122
12-33-44 | 123344
23-44-11 | 234411
...and I needed to match them to each other to compare data, how would I change the table 1 fields to update the table without dashes in the numbers and then match to the table 2 fields?
I know of to_number() so I think my biggest question is how I would update the table without the dashes in the Itm_ID.