I have to create various tables using queries. The code for the first 2 tables is as follows
CREATE TABLE patient(
SSN char(9) NOT NULL,
PID char(8) NOT NULL,
Address char(60) NOT NULL,
BirthDate DATE NOT NULL,
Gender char(1) NOT NULL,
Name char(20) NOT NULL,
BloodType VARCHAR(2) NOT NULL...