Thumbs up for the Correct answer with all
steps

1. CREATE SEQUENCE SalespersonIDSeq
As INT
START WITH 11
INCREMENT BY 1
NO CYCLE;
2. INSERT INTO Salesperson_T(SalespersonID, SalespersonName, SalespersonCity, SalespersonState, SalespersonZIP)
VALUES
(NEXT VALUE FOR SalespersonIDSeq, 'Brandon Young', 'Forte Wayne', 'IN',46805),
(NEXT VALUE FOR SalespersonIDSeq, 'Bailey Whitehill', 'Forte Wayne', 'IN',46814);
3. CREATE VIEW Salesperson_IN
AS
SELECT SalespersonID, SalespersonName, SalespersonCity, SalespersonState
FROM Salesperson_T
WITH CHECK OPTION;
For the questions below, write the SQL statement and also answer the question if requested. You n...
Using MySQL commands answer the questions listed below using the Premier Products Company schema. 1.Using Views a) Create a view called part_location that has the following attributes: part_num, part_description, part_quantity, warehouse_name, warehouse_address. This data comes from the part and warehouse entities. b) Write a query using the view that shows the total number of parts ordered from each warehouse. The output should look like this: 2. Using Triggers a) Execute the following SQL to create the customer_audit table in the...
Question 1.Write a SQL statement for each of the following
questions based on the above tables (50 Points).
1) Create “Enrollment” table.
2) Change the credits of “Database” course from 2 to 3.
3) List the course titles (not Course_No) and grades John Doe
had taken.
4) Calculate average of Café Balance, and name new field as
Average Balance.
5) Create a roster for “Database” course (list student ID, last
name, first name, major, and status for each student enrolled...
SQL Query Question: I have a database with the tables below, data has also been aded into these tables, I have 2 tasks: 1. Add a column to a relational table POSITIONS to store information about the total number of skills needed by each advertised position. A name of the column is up to you. Assume that no more than 9 skills are needed for each position. Next, use a single UPDATE statement to set the values in the new...
The common requirements of all questions are the same. Read each question carefully and submit a query to fulfill for each question. Also, students need to submit the result of the corresponding query under the query. Also, assignment has to be written with Microsoft Word for feedback. For technical issue, other formats, such as image, sql, are not appropriate to receive feedback and comments. Don’t delete or change questions. For assignment 5 and 6, you don’t need to submit screenshots....
If you’re using Visual Studio Community 2015, as requested, the instructions below should be exact but minor discrepancies may require you to adjust. If you are attempting this assignment using another version of Visual Studio, you can expect differences in the look, feel, and/or step-by-step instructions below and you’ll have to determine the equivalent actions or operations for your version on your own. INTRODUCTION: In this assignment, you will develop some of the logic for, and then work with, the...