G
Guest
Hello I am curretnly working on a Query for a row source lookup on a table
called SrvcAwardTable.
I am trying to return the last name of an Individual whose ID in the
SrvcAwardTable matches theEMPL_ID in the DELTEK_vwCF_AWARDS table.
I have the following SQL statement. Please tell me what i am doing wrong
here.
************************************************************
SELECT DELTEK_vwCF_AWARDS.FIRST_NAME
FROM DELTEK_vwCF_AWARDS, SrvcAwardTable
WHERE (((SrvcAwardTable.ID)=[DELTEK_vwCF_AWARDS].[EMPL_ID]))
ORDER BY DELTEK_vwCF_AWARDS.FIRST_NAME;
************************************************************
Its pretty simple I know but I am stuck.
called SrvcAwardTable.
I am trying to return the last name of an Individual whose ID in the
SrvcAwardTable matches theEMPL_ID in the DELTEK_vwCF_AWARDS table.
I have the following SQL statement. Please tell me what i am doing wrong
here.
************************************************************
SELECT DELTEK_vwCF_AWARDS.FIRST_NAME
FROM DELTEK_vwCF_AWARDS, SrvcAwardTable
WHERE (((SrvcAwardTable.ID)=[DELTEK_vwCF_AWARDS].[EMPL_ID]))
ORDER BY DELTEK_vwCF_AWARDS.FIRST_NAME;
************************************************************
Its pretty simple I know but I am stuck.