Hi,
I have two incomplete lists of staff which combined create a full list of
staff with duplicates. I wish to create a full list with no duplicates.
Each member of staff has and obviously a name. I wish to select the list of
staff using the code, but here lies the problem. The naming is not entirely
consistent
Table 1
Code Name
SMJ Mr. J. Smith
Table 2
Code Name
SMJ Mr J. Smith
In a query using SELECT DISTINCT - I end up with these being two records
because of the "." after the Mr! If I only select on the basis of code,
then fine, bu I want to return both the Code and the name.
Thanks in advance
I have two incomplete lists of staff which combined create a full list of
staff with duplicates. I wish to create a full list with no duplicates.
Each member of staff has and obviously a name. I wish to select the list of
staff using the code, but here lies the problem. The naming is not entirely
consistent
Table 1
Code Name
SMJ Mr. J. Smith
Table 2
Code Name
SMJ Mr J. Smith
In a query using SELECT DISTINCT - I end up with these being two records
because of the "." after the Mr! If I only select on the basis of code,
then fine, bu I want to return both the Code and the name.
Thanks in advance
Comment