You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax
create table 'spring3'.'employee'(
id int,
firstname varchar (32),
lastname varchar (32),
email varchar (32),
phonenumber varchar (32),
hiredate date,
salary int
);
create table 'spring4'.'product'(
id int,
name varchar (32),
quantity int,
price float,
available boolean
);