I have a tblTutor(Key: TRef) and tblTAvail(foreign key: TRef) tables.
tblTutor: TRef(key), FHKAM_FM(boolean type) FHKCFP(boolean type)
tblTAvail: TRef(foreign key), SessionNumber
I need to make a SQL to link the tables and list their columns and a boolean column, say "fellow" column (type boolean), which indicates either FHKAM_FM or FHKCFP is true.
Would you suggest for the SQL
tblTutor: TRef(key), FHKAM_FM(boolean type) FHKCFP(boolean type)
tblTAvail: TRef(foreign key), SessionNumber
I need to make a SQL to link the tables and list their columns and a boolean column, say "fellow" column (type boolean), which indicates either FHKAM_FM or FHKCFP is true.
Would you suggest for the SQL