Answered step by step
Verified Expert Solution
Question
1 Approved Answer
To test whether a table has been modified correctly as you do these exercises, you can write and run an appropriate SELECT statement. 1 .
To test whether a table has been modified correctly as you do these exercises, you can write and run an appropriate SELECT statement.
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.
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.
Write a DELETE statement that deletes the row you added to the Categories table in exercise This statement should use the CategoryID column to identify the row.
Write an INSERT statement that adds this row to the Products table:
ProductID: The next automatically generated ID
CategoryID:
ProductCode: dgx
ProductName: Yamaha DGX Key Digital Piano
Description: Long description to come.
ListPrice:
DiscountPercent:
DateAdded: Today's datetime
Use a column list for this statement.
Write an UPDATE statement that modifies the product you added in exercise This statement should change the DiscountPercent column from to
Write a DELETE statement that deletes the row in the Categories table that has an ID of 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.
Write an INSERT statement that adds this row to the Customers table:
EmailAddress: rick@raven.com
Password: Make this no password by using an empty string Just two single quotes
FirstName: Rick
LastName: Raven
Use a column list for this statement.
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.
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
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started