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 Subquery Exercises: Extract all data from the customer table if and only if one or more of the customers in the customer table are located in London.

SQL SUBQUERY: Exercise-15 with Solution

15. Write a query to extract all data from the customer table if and only if one or more of the customers in the customer table are located in London.

Sample table: Customer


Sample Solution:

SELECT customer_id,cust_name, city
FROM customer
WHERE EXISTS
   (SELECT *
    FROM customer 
    WHERE city='London');

Output of the Query:

customer_id	cust_name		city
3002		Nick Rimando		New York
3007		Brad Davis		New York
3005		Graham Zusi		California
3008		Julian Green		London
3004		Fabian Johnson		Paris
3009		Geoff Cameron		Berlin
3003		Jozy Altidor		Moscow
3001		Brad Guzan		London

Explanation:

SQL Subqueries:  Write a query to extract all data from the customer table if and only if one or more of the customers in the customer table are located in London.

Practice Online


Inventory database model

Query Visualization:

Duration:

Query visualization of Find the data from the customer table if and only if one or more of the customers in the customer table are located in London - Duration

Rows:

Query visualization of Find the data from the customer table if and only if one or more of the customers in the customer table are located in London - Rows

Cost:

Query visualization of Find the data from the customer table if and only if one or more of the customers in the customer table are located in London - Cost

Contribute your code and comments through Disqus.

Previous: Write a query to find the sums of the amounts from the orders table, grouped by date, eliminating all those dates where the sum was not at least 1000.00 above the maximum order amount for that date.
Next: From the following tables, write a SQL query to find the salespeople who deal multiple customers. Return salesman_id, name, city and commission.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



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