insert into actor
select '3','ED','CHASE','2006-02-15 12:34:33'
from actor
where not exists(
select *
from actor
where actor_id='3'
);