C
confused!!
I would like to eliminate the repetition of results some how. Just don't
know what criteria to use or how to phrase the SQL stmt.
SELECT JDE.USERNAME, Ducar.UserName
FROM JDE, Ducar
WHERE (((Ducar.UserName) Like ([JDE].[USERNAME]) & "*"))
This is the SQL statement. However for every DUCAR username Allen W. and
Allen S. the result returns JDE usernames with Allen... and everything
following it. Each name Allen S and W produce the same number of results.
What criteria can i use in order to further restrict the AllenW to only
Allen W and Allen S to Allen S?
know what criteria to use or how to phrase the SQL stmt.
SELECT JDE.USERNAME, Ducar.UserName
FROM JDE, Ducar
WHERE (((Ducar.UserName) Like ([JDE].[USERNAME]) & "*"))
This is the SQL statement. However for every DUCAR username Allen W. and
Allen S. the result returns JDE usernames with Allen... and everything
following it. Each name Allen S and W produce the same number of results.
What criteria can i use in order to further restrict the AllenW to only
Allen W and Allen S to Allen S?