Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

SQL GUITARSHOP 1. Write a Select * Into statement three times that will create the following 3 tables: Categories Products Customers Now add three Drop

SQL GUITARSHOP

1. Write a Select * Into statement three times that will create the following 3 tables: Categories Products Customers Now add three Drop Table statements before the Select * Into statements to delete the 3 tables starting with your initials in case you need to recreate your tables.

2. Write an INSERT statement that adds this row to the Categories table: CategoryName: Brass Code the INSERT statement so SQL Server automatically generates the value for the CategoryID column.

3. Write an UPDATE statement that modifies the row you just added to the Categories table. This statement should change the CategoryName column to Woodwinds, and it should use the CategoryID column to identify the row.

4. Write a DELETE statement that deletes the row you added to the Categories table in exercise 2. This statement should use the CategoryID column to identify the row.

5. Write an INSERT statement that adds this row to the Products table: ProductID: The next automatically generated ID CategoryID: 4 ProductCode: dgx_640 ProductName: Yamaha DGX 640 88-Key Digital Piano Description: Long description to come. ListPrice: 799.99 DiscountPercent: 0 DateAdded: Todays date/time. Use a column list for this statement.

6. Write an UPDATE statement that modifies the product you added in exercise 5. This statement should change the DiscountPercent column from 0% to 35%.

7. Write a DELETE statement that deletes the row in the Categories table that has an ID of 4. When you execute this statement, it will produce an error since the category has related rows in the Products table. To fix that, precede the DELETE statement with another DELETE statement that deletes all products in this category.

8. Write an INSERT statement that adds this row to the Customers table: EmailAddress: rick@raven.com Password: (empty string) FirstName: Rick LastName: Raven Use a column list for this statement.

9. Write an UPDATE statement that modifies the Customers table. Change the password column to secret for the customer with an email address of rick@raven.com.

10. Write an UPDATE statement that modifies the Customers table. Change the password column to reset for every customer in the table.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Fundamentals Of Database Systems

Authors: Ramez Elmasri, Shamkant B. Navathe

7th Edition Global Edition

1292097612, 978-1292097619

Students also viewed these Databases questions