INSERT into L5_DIRECTORS (director_id, first_name, last_name)
Values
(1010, 'Rob', 'Minkoff'),
(1020, 'Bill', 'Condon'),
(1050, 'Josh', 'Cooley'),
(2010, 'brad', 'bird'),
(3020, 'lake', 'bell');
EDIT: I figured it out, I had to write each row individually and run it, I do not why it would not work all together but thanks for the help anyway.