0. 1. drop database if exists SAMPLEDB; create database SAMPLEDB; use SAMPLEDB; create table MONKEYS( ID bigint not null, NAME varchar(15), primary key (ID) ); create table TEACHERS( ID bigint not null, NAME varchar(15), primary key(ID) ); create tab…