Hi all,
I need a favor on SQL this time
There are 4 tables as follows
Employee(EmpID,EmpName,...........)
Designation(Des_ID,Designation....)
EmpProfInfo(EmpID,Des_ID,..........)
Training(TrainingTypeID,EmpID,TrainingType,.......)
When an employee allocated to a training their details will be inserted in to the Training Table
I want to write a sql query so that I can select EmpID,EmpName,Designation of employees who do not participated in the particular training type
It would be a great help if anyone could show me a way to achieve this