N
nogreatnamesleft
I have a main table that has several fields with user ID numbers (e.g. sales,
engineering, etc.) and a second table with the all the user ID numbers,
names, etc.
I want to create a query that shows the user name, not ID, in the record. I
entered in the design view this:
Last Name: (SELECT LAST_NAME
FROM ENGR_NAMES LEFT JOIN MAIN_TABLE
ON ENGR_NAMES.ENGR_ID = MAIN_TABLE.ENGR_ID
I get this error:
At most one record can be returned by this subquery.
What am I doing wrong?
engineering, etc.) and a second table with the all the user ID numbers,
names, etc.
I want to create a query that shows the user name, not ID, in the record. I
entered in the design view this:
Last Name: (SELECT LAST_NAME
FROM ENGR_NAMES LEFT JOIN MAIN_TABLE
ON ENGR_NAMES.ENGR_ID = MAIN_TABLE.ENGR_ID
I get this error:
At most one record can be returned by this subquery.
What am I doing wrong?