29 May Describe ?the importance of using sub queries in a database system. Provide at ?least two business case scenarios to support your response. Be sure to respond to at least
Week 8 Discussion – Advanced SQL and PL/SQL
47 Unread replies47 Replies
Extracting and interpreting data can be very valuable to an organization.
- Describe the importance of using sub queries in a database system. Provide at least two business case scenarios to support your response.
- Be sure to respond to at least one of your classmates' posts.
Reply to student
Quinn McLean
2:15pm May 28 at 2:15pm
Hello Class,
A subquery is a SELECT statement within another SQL statement. The SQL statement can be SELECT, WHERE clause, FROM clause, JOIN, INSERT, UPDATE, DELETE, SET, DO, or another subquery. Subqueries form a complex query into secluded parts so that a complex query can be separated into a series of steps for easy comprehension and code maintenance. Subqueries allow you to use the outcome of another query in the outer query.
Two examples of why they are important are:
If the company wanted a list of items that are priced more than the average price. The code would be
SELECT name, listed_price
FROM items
WHERE listed_price > (
SELECT AVG(listed_price)
FROM items
); The subquery is in the where clause and it gives the results of the prices, then the price is compared to the value and the items that are priced above the average will be in the final output. Now let us say we wanted to get a list of all the customers that purchased an item. We would use a multirow subquery to output all the proper information needed. SELECT last_name, first_name
FROM customers
WHERE id IN (
SELECT customers_id
FROM sales
); Sources: https://www.tutorialspoint.com/sql/sql-sub-queries.htm#:~:text=A%20Subquery%20or%20Inner%20query,the%20data%20to%20be%20retrieved. Reply
Our website has a team of professional writers who can help you write any of your homework. They will write your papers from scratch. We also have a team of editors just to make sure all papers are of HIGH QUALITY & PLAGIARISM FREE. To make an Order you only need to click Ask A Question and we will direct you to our Order Page at WriteDemy. Then fill Our Order Form with all your assignment instructions. Select your deadline and pay for your paper. You will get it few hours before your set deadline.
Fill in all the assignment paper details that are required in the order form with the standard information being the page count, deadline, academic level and type of paper. It is advisable to have this information at hand so that you can quickly fill in the necessary information needed in the form for the essay writer to be immediately assigned to your writing project. Make payment for the custom essay order to enable us to assign a suitable writer to your order. Payments are made through Paypal on a secured billing page. Finally, sit back and relax.
About Wridemy
We are a professional paper writing website. If you have searched a question and bumped into our website just know you are in the right place to get help in your coursework. We offer HIGH QUALITY & PLAGIARISM FREE Papers.
How It Works
To make an Order you only need to click on “Order Now” and we will direct you to our Order Page. Fill Our Order Form with all your assignment instructions. Select your deadline and pay for your paper. You will get it few hours before your set deadline.
Are there Discounts?
All new clients are eligible for 20% off in their first Order. Our payment method is safe and secure.