Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

SQL Exercises: Prepare a list with order no, purchase amount, customer name and their cities for those orders which order amount between 500 and 2000

SQL JOINS: Exercise-2 with Solution

From the following tables write a SQL query to find those orders where the order amount exists between 500 and 2000. Return ord_no, purch_amt, cust_name, city.

Sample table: orders


Sample table: customer


Sample Solution:

SELECT  a.ord_no,a.purch_amt,
b.cust_name,b.city 
FROM orders a,customer b 
WHERE a.customer_id=b.customer_id 
AND a.purch_amt BETWEEN 500 AND 2000;

Output of the Query:

ord_no	purch_amt	cust_name	city
70007	948.50		Graham Zusi	California
70010	1983.43		Fabian Johnson	Paris

Relational Algebra Expression:

Relational Algebra Expression: Prepare a list with order no, purchase amount, customer name and their cities for those orders which order amount between 500 and 2000.

Relational Algebra Tree:

Relational Algebra Tree: Prepare a list with order no, purchase amount, customer name and their cities for those orders which order amount between 500 and 2000.

Explanation:

Syntax to make a list with order no, purchase amount, customer name and their cities for those orders which order amount between 500 and 2000

Pictorial presentation:

Result to make a list with order no, purchase amount, customer name and their cities for those orders which order amount between 500 and 2000

Practice Online


Query Visualization:

Duration:

Query visualization of Prepare a list with order no, purchase amount, customer name and their cities for those orders which order amount between 500 and 2000 - Duration

Rows:

Query visualization of Prepare a list with order no, purchase amount, customer name and their cities for those orders which order amount between 500 and 2000 - Rows

Cost:

Query visualization of Prepare a list with order no, purchase amount, customer name and their cities for those orders which order amount between 500 and 2000 - Cost

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: From the following tables write a SQL query to find the salesperson and customer who belongs to same city. Return Salesman, cust_name and city.
Next: From the following tables write a SQL query to find the salesperson(s) and the customer(s) he handle. Return Customer Name, city, Salesman, commission.

Test your Programming skills with w3resource's quiz.

What is the difficulty level of this exercise?



SQL: Tips of the Day

SQL Server SELECT into existing table.

INSERT INTO dbo.TABLETWO
SELECT col1, col2
  FROM dbo.TABLEONE
 WHERE col3 LIKE @search_key

This assumes there's only two columns in dbo.TABLETWO - you need to specify the columns otherwise:

INSERT INTO dbo.TABLETWO
  (col1, col2)
SELECT col1, col2
  FROM dbo.TABLEONE
 WHERE col3 LIKE @search_key

Database: SQL Server

Ref: https://bit.ly/3y6tpA3