i have a question on that 2 tables faculty_list and clearance table
this is the flow of my program:
1. on my clearance table i add faculty fname,lname,campus,school,department (from related facultylist table) who are submitted their clearance - (this is solved using relation from my clearance table to faculty_list table).
- meaning the one encoded on clearance table is the faculty who have submitted.
* now my question is how can i filter from faculty_list table that who ARE NOT yet submitted their clearance.
my table:
faculty
id
fname
lname
campus
school
department
clearance
id
faculty_id (related to faculty table id)
campus_id (related to faculty_list campus)
school_id(related to faculty_list school)
department_id (related to faculty_list department)
clearance
year
note: my only option now is import all related fields from faculty_list table (id, campus, school, department) to my clearance table, then fill out cleance and year if the faculty submit their clearance. the data column not yet fillout meaning the one who are not submitted.. but i hope their is another option not to import..