Question

SQL: The schema name should be mxxws, where mxx is your MySQL user name. To refresh...

SQL:

The schema name should be mxxws, where mxx is your MySQL user name. To refresh your memory – here is the schema for that database:

Create the rest of the contact management database by writing the statements that do each of the following items below. For each one: (1) execute them on your copy of the database, and (2) write the statements in the space:

Statement to create the Contact table (one statement)

Statement to create the Employee table (one statement)

Statement to create the ContactEmployee table (one statement):

  1. Statements that add the following two Companies to the Company table (there are two statements):

CompanyID

CompanyName

Street

City

State

Zip

110

Urban Outfitters, Inc.

5000 South Broad St.

Philadelphia

PA

19112

111

Toll Brothers

250 Gibraltar Rd.

Horsham

PA

19044

  1. Statements that add the following two Contacts to the Contact table (there are two statements):

ContactID

CompanyID

FirstName

LastName

Street

City

State

Zip

IsMain

Email

Phone

501

110

Jack

Lee

4777 Cameron Rd.

Buffalo

NY

14209

1

[email protected]

215-454-5500

502

111

Bonnie

Johnson

3600 Elk City Rd.

Ridley Park

PA

19078

1

[email protected]

215-938-8000

  1. Statements that add the following two Employees to the Employee table (there are two statements):

EmployeeID

FirstName

LastName

Salary

HireDate

JobTitle

Email

Phone

1001

Dianne

Connor

85,000

August 12, 2011

Sales Manager

[email protected]

215-555-5679

1002

Lesley

Bloom

70,000

July 1, 2012

Sales Representative

[email protected]

215-555-5678

  1. Statements that record the following contact events in the Contact-Employee table. Remember, a “contact event” occurs when an employee of MarketCo communicates with one of its customers (contact). MarketCo wants to keep track all contact between its own employees and its clients.

Contact:            Bonnie Johnson
Employee:        Lesley Bloom
Date:                February 5, 2018
Description:      Emailed new marketing plan for approval

Contact:            Jack Lee
Employee:        Dianne Connor
Date:                February 8, 2018
Description:      Phone call to discuss pricing for advertising

  1. In the Employee table, the statement that changes Lesley Bland’s phone number to 215-555-8800 (one statement).
  2. In the Company table, the statement that changes the name of “Urban Outfitters, Inc.” to “Urban Outfitters” (one statement).
  3. In ContactEmployee table, the statement that removes Dianne Connor’s contact event with Jack Lee (one statement).
  4. Write the SQL SELECT query that displays the names of the employees that have contacted Toll Brothers (one statement). Run the SQL SELECT query in MySQL Workbench. Copy the results below as well.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Dear Student ,

As per the requirement submitted above , kindly find the below solution.

This demonstration is using WAMP (Windows , Apache , MySQL and PHP) Server.Database and Tables are created using PHPMyAdmin.

NOTE : ALL SQL STATEMENTS WILL EXECUTES AS IT IS IN MySQL Workbench.

1.Table Name :Company

SQL Create table Statement :

Create TABLE Company (
CompanyID int primary key,
CompanyName varchar(100) ,
Street varchar(100),
City varchar(50),
State varchar(2),
Zip int not null
);

Inserting records into companty table :

INSERT INTO company values (110,'Urban Outfitters, Inc.','5000 South Broad St.','Philadelphia','PA',19112);
INSERT INTO company values (111,'Toll Brothers','250 Gibraltar Rd.','Horsham','PA',19044);

Select records :

select * from company;

Screen in PHPMyAdmin :

*******************************

2.Table Name :

SQL Create table Statement :

CREATE TABLE contact(
ContactID int primary key,
CompanyID int ,
FirstName varchar(100),
LastName varchar(100),
Street varchar(100),
City varchar(10),
State varchar(2),
Zip int ,
IsMain TINYINT(1),
Email varchar(100),
Phone varchar(100),
foreign key(CompanyID) REFERENCES company (CompanyID)
);

Inserting records :

insert INTO contact values (501,110,'Jack','Lee','4777 Cameron Rd.','Buffalo','NY',14209,1,'[email protected]','215-454-5500');
insert INTO contact values (502,111,'Bonnie','Johnson','3600 Elk City Rd.','Ridley Park','PA',19078,1,'[email protected]','215-938-8000');

Selecting records :

select * from contact;

Screen in PHPMyAdmin :

*******************************

3.Table Name :

SQL Create table Statement :

CREATE TABLE Employee (
EmployeeID int PRIMARY KEY,
FirstName varchar(100),
LastName varchar(100),
Salary decimal(8,2),
HireDate date,
JobTitle varchar(100),
Email varchar(100),
Phone varchar(100)
);

Inserting records :

insert into Employee values (1001,'Dianne','Connor',85000,'2011-12-8','Sales Manager','[email protected]','215-555-5679');
insert into Employee values (1002,'Lesley','Bloom',70000,'2012-07-1','Sales Representative','[email protected]','215-555-5678');

Selecting records :

select * from Employee;

Screen in PHPMyAdmin :

*******************************

SQL Query :

update employee set phone=' 215-555-8800' where firstName='Lesley' and lastName='Bloom';

Screen in SSMS :

************************

SQL Query :

update company set companyName='Urban Outfitters' where companyName="Urban Outfitters, Inc.";

Screen in PHPMyADmin :

*****************************

SQL Query :

NOTE : PLEASE FEEL FREE TO PROVIDE FEEDBACK ABOUT THE SOLUTION.

Add a comment
Know the answer?
Add Answer to:
SQL: The schema name should be mxxws, where mxx is your MySQL user name. To refresh...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Using MySQL Workbench: Submit the printouts of your interaction with the DBMS. ID name ID delivery_timestamp...

    Using MySQL Workbench: Submit the printouts of your interaction with the DBMS. ID name ID delivery_timestamp supplier supplied item city name quantity 1. [30-point] Create an SQL database of the above ER-diagram using "create table” statements. The type of attribute "quantity" is integer, "delivery_timestamp" is timestamp, and, for all the others, the type is varchar (up to 100 chars). 2. [10-point] Insert 4 records into supplier, 4 records into item, and 10 records into supplied. 3. [60-points] Perform the following...

  • For this set of Review Questions, we will create and use a database for the Wedgewood...

    For this set of Review Questions, we will create and use a database for the Wedgewood Pacific Corporation (WPC) that is similar to the Microsoft Access database we created and used in Chapters 1 and 2. Founded in 1957 in Seattle, Washington, WPC has grown into an internationally recognized organization. The company is located in two buildings. One building houses the Administration, Accounting, Finance, and Human Resources departments, and the second houses the Production, Marketing, and Information Systems departments. The...

  • Sample data for these tables are shown in Figures 3-26 and 3-27. For each SQL statement...

    Sample data for these tables are shown in Figures 3-26 and 3-27. For each SQL statement you write, show the results based on these data. If possible, run the statements you write for the questions that follow in an actual DBMS, as appropriate, to obtain results. Use data types that are consistent with the DBMS you are using. If you are not using an actual DBMS, consistently represent data types by using either the MySQL, Microsoft SQL Server, or Oracle...

  • database and sql problme THE QUESTIONS 3, 4,5 and 6 REFER TO THE RELATIONAL TABLES LISTED...

    database and sql problme THE QUESTIONS 3, 4,5 and 6 REFER TO THE RELATIONAL TABLES LISTED BELOW CREATE TABLE Department ( DECIMAL(5) VARCHAR(30) CHAR(5) DATE NOT NULL NOT NULL NOT NULL * Department number /*Department name * Department manager number */ /Manager start date DNumber DName Manager MSDate CONSTRAINT Department_PK PRIMARY KEY(DNumber) CONSTRAINT Department_CK UNIQUE(DName) CREATE TABLE DeptLocation DECIMAL(5) VARCHAR(50) NOT NULL NOT NULL DNumber * Department number */ * Department location */ Address CONSTRAINT DeptLocation_PK PRIMARY KEY(DNumber, Address) CONSTRAINT...

  • Create the database and tables for the database. Show all SQL statements. Include primary and foreign...

    Create the database and tables for the database. Show all SQL statements. Include primary and foreign keys. Insert data into each table. Show select statements and display the output of each table. Note:Student’s name must be inserted into table as part of the data! Perform the SQL below: Query one table and use WHERE to filter the results. The SELECT clause should have a column list, not an asterisk (*). State the purpose of the query; show the query and...

  • I need the SQL statements for these questions: 6. List the reservation IDs for reservations that...

    I need the SQL statements for these questions: 6. List the reservation IDs for reservations that are for a paddling trip. (Hint: Use a subquery.) 7. What is the longest distance for a biking trip? 8. For each trip in the RESERVATION table that has more than one reservation, group by trip ID and sum the trip price. (Hint: Use the COUNT function and a HAVING clause.) 9. How many current reservations does Colonial Adventure Tours have and what is...

  • Create three or more MySQL Data Control language (DCL) Statements using the Youth League Database. 1....

    Create three or more MySQL Data Control language (DCL) Statements using the Youth League Database. 1. A Create new user statement for the database 2. A statement that grants privileges to the new user 3. A statement that revokes privileges 1. A SQL Text File containing the SQL commands to create the database, create the table, and insert the sample test data into the table. 2. A SQL Text File containing the DCL SQL Statements. eted hemas Untitled Limit to...

  • Connect to mySQL DBMS, open a SQL script file, navigate to CityJail.sql file and execute it...

    Connect to mySQL DBMS, open a SQL script file, navigate to CityJail.sql file and execute it to create tables and populate with the supplied data. If there are any errors in the script fix them. It is your job to find the errors and correct them. This is important. You will need correct data for future exercises in this module. Then answer all questions. Write the answer below each question then take screen shot of the result. This script builds...

  • SQL: CREATE STATEMENT For patients whose last name matches the name entered by the user, display...

    SQL: CREATE STATEMENT For patients whose last name matches the name entered by the user, display their first name, phone number, and doctor's name. Note: Try Davis. (TEXT FOR DATABASE BELOW) DROP TABLE PATIENT; DROP TABLE BILLING; DROP TABLE DOCTOR; CREATE TABLE DOCTOR( DOC_ID VARCHAR2(10) NOT NULL, DOC_NAME VARCHAR2(20), DATEHIRED DATE, SALPERMON NUMBER(8), AREA VARCHAR2(20), SUPERVISOR_ID NUMBER(8), CHGPERAPPT NUMBER(8), ANNUAL_BONUS NUMBER(8), PRIMARY KEY (DOC_ID) ); INSERT INTO DOCTOR VALUES('432', 'Harrison', to_date('05-DEC-1994','dd-mon-yyyy'), 12000, 'Pediatrics', 100, 75, 4500); INSERT INTO DOCTOR VALUES('509',...

  • Create SQL statements based on the given tables: Code to create the tables: CREATE DATABASE LAB...

    Create SQL statements based on the given tables: Code to create the tables: CREATE DATABASE LAB4DB; USE LAB4DB; CREATE TABLE CUSTOMER ( CUS_CODE int primary key, CUS_LNAME varchar(15), CUS_FNAME varchar(15), CUS_INITIAL varchar(1), CUS_AREACODE varchar(3), CUS_PHONE varchar(8), CUS_BALANCE float(8) ); INSERT INTO CUSTOMER VALUES('10010','Ramas','Alfred','A','615','844-2573','0'); INSERT INTO CUSTOMER VALUES('10011','Dunne','Leona','K','713','894-1238','0'); INSERT INTO CUSTOMER VALUES('10012','Smith','Kathy','W','615','894-2285','345.86'); INSERT INTO CUSTOMER VALUES('10013','Olowski','Paul','F','615','894-2180','536.75'); INSERT INTO CUSTOMER VALUES('10014','Orlando','Myron','','615','222-1672','0'); INSERT INTO CUSTOMER VALUES('10015','O''Brian','Amy','B','713','442-3381','0'); INSERT INTO CUSTOMER VALUES('10016','Brown','James','G','615','297-1228','221.19'); INSERT INTO CUSTOMER VALUES('10017','Williams','George','','615','290-2556','768.93'); INSERT INTO CUSTOMER VALUES('10018','Farriss','Anne','G','713','382-7185','216.55'); INSERT INTO CUSTOMER VALUES('10019','Smith','Olette','K','615','297-3809','0'); /*...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT