I need to bring the ssn's into UniqueSups (supervisors) from
tblNonNormalize d. My inherited DB is not normalized and I find it
extremely irritating due to the workarounds needed.
I created tblUniqueSups by doing a select Distinct Supervisor Name.
Now I need to bring in the SSNs of the Unique Sups but I can't quite
get it.
I tried:
UPDATE UniqueSups LEFT JOIN tblNonNormalize d ON UniqueSups.NAME =
tblNonNormalize d.SupervisorNam e SET UniqueSups.SSN =
[tblNonNormalize d].[SSN];
but the SSNs are not populating. I'm not quite up to speed on the
syntax for a union query.
TIA
Moe
tblNonNormalize d. My inherited DB is not normalized and I find it
extremely irritating due to the workarounds needed.
I created tblUniqueSups by doing a select Distinct Supervisor Name.
Now I need to bring in the SSNs of the Unique Sups but I can't quite
get it.
I tried:
UPDATE UniqueSups LEFT JOIN tblNonNormalize d ON UniqueSups.NAME =
tblNonNormalize d.SupervisorNam e SET UniqueSups.SSN =
[tblNonNormalize d].[SSN];
but the SSNs are not populating. I'm not quite up to speed on the
syntax for a union query.
TIA
Moe
Comment