a.single table insert INSERT INTO jobs(job_id,job_title,min_salary,Max_Salary) VALUES('IT_PM','PROJECT MANAGER',5000,11000); INSERT INTO scott.bonus(ename,job,sal,comm) SELECT ename,job,sal*.10 FROM scott.emp; b.more table insert create table small_…