[username] by your own username without brackets.fruit.sqlWinSCP to the root directory of the loc-cs.org server,
that is, outside of public_html folder.MySQL account via PuTTY.
There are two gates.
WinSCP.PuTTY system, you type the following command tomysql -u [username] -p [username]; MySQL password. source fruit.sql;
USE [username];
CREATE TABLE fruit(
id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT,
name VARCHAR(30) NOT NULL,
color VARCHAR(30) NOT NULL,
PRIMARY KEY (id)
);
Use the following commands to check your table.
SHOW TABLES;
DESCRIBE fruit;