you will certainly wish to consider other alternatives when you go to put your system into production and the very next day the client asks you to add a 43rd task
replace tblJobSetup with
create table TaskEmpl
( task_id integer not null
, empl_id integer not null
, primary key (task_id, empl_id)
, constraint valid_task
foreign key (task_id) references tblTaskList (id)
, constraint valid_empl
foreign key (empl_id) references tblEmployees (id)
)
rudy
http://r937.com/