
CredTypeID is the number that CredType is a credential type
I need a request to display the credentials in the drop down list, so I can change the credentials by selecting a new one.
Currently, I need to know the CredTypeID number in order to change credentials.
I just want to select it from the drop-down list.
Currently, to change Betty Smith to RN, I need to enter "3" in the CredTypeID. I just want to be able to select "RN" from the drop-down list.
Here is the table and sql view (from access)

SELECT Lawson_Employees.LawsonID, Lawson_Employees.LastName, Lawson_Employees.FirstName, Lawson_DeptInfo.DisplayName, Lawson_Employees.CredTypeID, tblCredTypes.CredType FROM (Lawson_Employees INNER JOIN Lawson_DeptInfo ON Lawson_Employees.AccCode = Lawson_DeptInfo.AccCode) INNER JOIN tblCredTypes ON Lawson_Employees.CredTypeID = tblCredTypes.CredTypeID;
sql ms-access
Move More Comments Link To Top
source share