I have a char field which contains addresses and I need to extract just the numeric portion and store it in another field. Is this possible?
Any help would be greatly appreciated! Thank You.
I have the following query:
SELECT Rejects.cDCN,ScanReject.ImageName FROM Rejects
FULL OUTER JOIN IDC_ScanReject ON Rejects.iid = IDC_ScanREject.iid
The data looks like this:
Rejects.cDCN
12345
67890
ScanReject.ImageName
89231
32412
I want this:
SingleColumnName
12345
67890
89231
32412...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.