Question: 1. (3 pts) Write a SQL command that will create a table named scores that has the fields studentsName (string 30 characters), score (integer) and

1. (3 pts) Write a SQL command that will create a table named scores that has the fields studentsName (string 30 characters), score (integer) and maxScore (integer).

2. (3 pts) Write a SQL command that will insert a record into the scores table above for a student whose name is Kyle, with a score of 80, in a test with a maximum score of 200.

3. (3 pts) Write a SQL command that will display the name and score (not maxScore) of students where the maximum score of the test is 200.

4. (3 pts) Write a SQL command that will create a table named appts that has the fields student (string 14 characters), advisor (string 3 characters), and room (integer).

5. (3 pts) Write a SQL command that will insert a record into the appts table above for a student named Kelly, where the advisor is JSR, and the room number is 5.

6. (3 pts) Write a SQL command that will display the name of students that are associated with the advisor named JSR.

7. (7 pts) Use the FRIENDS table to answer the following questions.

LASTNAME FIRSTNAME AREACODE PHONE ST ZIP

--------------- ---------------- -------- -------- -- ------

BUNDY AL 100 555-1111 IL 22333

MEZA AL 200 555-2222 UK

MERRICK BUD 300 555-6666 CO 80212

MAST JD 381 555-6767 LA 23456

BULHER FERRIS 345 555-3223 IL 23332

PERKINS ALTON 911 555-3116 CA 95633

BOSS SIR 204 555-2345 CT 95633

a. Write a query that returns everyone in the database whose last name begins with M.

b. Write a query that returns everyone who lives in Illinois with a first name of AL.

c. Given two tables (PART1 and PART2) containing columns named PARTNO, how would you find out which part numbers are in both tables? Write the query.

Use the INTERSECT. Remember that INTERSECT returns rows common to both queries.

d. What shorthand could you use instead of WHERE a >= 10 AND a <=30?

e. What will this query return?

SELECT FIRSTNAME

FROM FRIENDS

WHERE FIRSTNAME = 'AL'

AND LASTNAME = 'BULHER';

f. Using the FRIENDS table, write a query that returns the following:

NAME ST

------------------- --

AL IL

g. Using the FRIENDS table, write a query that returns the following:

NAME PHONE

-------------------------- ------------

MERRICK, BUD 300-555-6666

MAST, JD 381-555-6767

BULHER, FERRIS 345-555-3223

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!