TheWebDataGuy
MIS
I have tried this in many different ways (Thanks to the responses I got from this board)but I keep hitting dead ends. Here is what I want now......
I got three tables: Application, ApplicationDetails and Employees
Application Table has ApplicationID & EmployeeID as a composite primary key.
ApplicationID
-------------
EmployeeID
------------
ApplicationDetails Table has ApplicationID as primary key.
ApplicationID
-------------
SubmissionDate
ApplicantNo
An Application can have many employees and one employee can be in many applications.
Employee Table has EmployeeID as PK and contains details like name etc.
EmployeeID
----------
FirstName
LastName
Now I want to create a form that contains:
ApplicationID, EmployeeID AND Names of ALL the employees associated with that ApplicationID. No of employees associated with an Applicaiton can vary from one to many.
ApplicationID
EmployeeID1 FirstName1
EmployeeID2 FirstName2
-
-
-
I am working with SQL Server Back End
Thanks Again!