Use the INSERT command to add your name to the Customers table.
This is a long one, so enter it carefully! (Hint: It is all on one line.)
INSERT INTO Customers (CustomerID, CustomerName, Address, City, PostalCode, Country) VALUES ('100', 'Your Name', 'Your Address', 'Your City', 'Your ZIP Code', 'Your Country')
To discover if your name was inserted, select the Customers table and scroll to the end. Your name should be the last record in the table. (Note: Your name will not remain in the database after you exit the Web page.)