mysql -h localhost -u root -prootpassword
mysql -h <host> -u<user> -p<password>
source doitall.sql
source <filename>
Note: Create the file dropdb.sql with the following MySQL commands in it.
DROP DATABASE IF EXISTS phonebook;
DROP DATABASE IF EXISTS <dbname>
Note: Create the file createdb.sql with the following MySQL commands in it.
DROP DATABASE IF EXISTS phonebook; CREATE DATABASE phonebook;
Note: Create the file createtable.sql with the following MySQL commands in it.
USE phonebook; CREATE TABLE info( id int not null auto_increment, firstname varchar(128), lastname varchar(128), phonenumber varchar(32), PRIMARY KEY (id) ) ENGINE=InnoDB;
Note: Create the file displaytable.sql with the following MySQL commands in it.
USE phonebook; DESCRIBE info;
Note: Create the file addddata.sql with the following MySQL commands in it.
USE phonebook; INSERT INTO info (firstname,lastname,phonenumber) VALUES ('Tim','Smith','888-888-8888'); INSERT INTO info (firstname,lastname,phonenumber) VALUES ('Judy','Jones','999-999-9999'); INSERT INTO info (firstname,lastname,phonenumber) VALUES ('John','Smith','777-777-7777');
INSERT INTO info (firstname,lastname,phonenumber) VALUES ('firstname','lastname','phonenumber');
Note: Create the file returndata.sql with the following MySQL commands in it.
USE phonebook; SELECT firstname,lastname FROM info WHERE phonenumber='888-888-8888'; SELECT phonenumber FROM info WHERE lastname='Jones'; SELECT * FROM info;
Note: Create the file doitall.sql with the following MySQL commands in it.
DROP DATABASE IF EXISTS phonebook; CREATE DATABASE phonebook; USE phonebook; CREATE TABLE info( id int unsigned not null auto_increment, firstname varchar(128), lastname varchar(128), phonenumber varchar(32), PRIMARY KEY (id) ) ENGINE=InnoDB; INSERT INTO info (firstname,lastname,phonenumber) VALUES ('Tim','Smith','888-888-8888'); INSERT INTO info (firstname,lastname,phonenumber) VALUES ('Judy','Jones','999-999-9999'); INSERT INTO info (firstname,lastname,phonenumber) VALUES ('John','Smith','777-777-7777'); SELECT firstname,lastname FROM info WHERE phonenumber='888-888-8888'; SELECT phonenumber FROM info WHERE lastname='Smith'; SELECT * FROM info;