Question: Write an INSERT statement that adds this row to the CategoriesCopy table: CategoryName: Brass Code the INSERT statement so SQL Server automatically generates the value

  1. Write an INSERT statement that adds this row to the CategoriesCopy table:

CategoryName: Brass

Code the INSERT statement so SQL Server automatically generates the value for the CategoryID column.

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

3. Write a DELETE statement that deletes the row you added to the CategoriesCopy table in exercise 1. This statement should use the CategoryID column to identify the row.

4.Write an INSERT statement that adds this row to the ProductsCopy 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.

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

6. Write a DELETE statement that deletes the row in the CategoriesCopy table that has an ID of 4.

7. Write an INSERT statement that adds this row to the CustomersCopy table:

EmailAddress: rick@raven.com Password: (empty string) FirstName: Rick LastName: Raven

Use a column list for this statement.

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

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

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!