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
But, this is what the query gives:
Rejects.cDCN ScanReject.ImageName
12345 NULL
67890 NULL
NULL 89231
NULL 32412
Any help would be GREATLY appreciated! Thanks!
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
But, this is what the query gives:
Rejects.cDCN ScanReject.ImageName
12345 NULL
67890 NULL
NULL 89231
NULL 32412
Any help would be GREATLY appreciated! Thanks!