drop table if exists Student; drop table if exists Campus; drop table if exists Apply; create table Student(ID char(3), name varchar(15), GPA float, sizeHS integer); create table Campus(location varchar(15), enrollment integer, rank integer); create table Apply(ID char(3), location varchar(15), major varchar(15), decision char(1));