For this weeks assignment the process of creating the database, the table and adding a record was very straight forward. I created a table called person and added the fields of FirstName (Text(30)), LastName (Text(30)), Phone (BIGINT), Email (Text(100)), State (Text(2)). Here is the code for my first record:
INSERT INTO `u989029080_4365`.`Person` (`FirstName`, `LastName`, `PhoneNumber`, `Email`, `State`) VALUES (‘Erik’, ‘Alicea’, ‘8133163901’, ‘[email protected]’, ‘fl’);

I didn’t have any issues and this was very similar to some work I have done with MS SQL Server.

Thanks,
Erik Alicea