You are on page 1of 21

COMBINING SET IN SQL SERVER

USING SUB QUERY AND USING JOIN

MARDHIYA HAYATI & STEVI EMA WIJAYAN TI


DATABASE PROGRAMING (TI) 2016

WHAT IS SUB QUERY ?


A Subquery or Inner query or Nested query is a query within another SQL
query and embedded within the WHERE clause. A subquery is used to return
data that will be used in the main query as a condition to further restrict the
data to be retrieved.
Subqueries can be used with the SELECT, INSERT, UPDATE, and DELETE
statements along with the operators like =, <, >, >=, <=, IN, BETWEEN etc.

MARDHIYA HAYATI - STEVI EMA WIJAYANTI

RULES OF SUB QUERY


There are a few rules that subqueries must follow:
Subqueries must be enclosed within parentheses.
A subquery can have only one column in the SELECT clause, unless multiple

columns are in the main query for the subquery to compare its selected
columns.

An ORDER BY cannot be used in a subquery, although the main query can

use an ORDER BY. The GROUP BY can be used to perform the same function as
the ORDER BY in a subquery.
Subqueries that return more than one row can only be used with multiple

value operators, such as the IN operator.

MARDHIYA HAYATI - STEVI EMA WIJAYANTI

RULES OF SUB QUERY


The SELECT list cannot include any references to values that evaluate to a

BLOB, ARRAY, CLOB, or NCLOB.


A subquery cannot be immediately enclosed in a set function.
The BETWEEN operator cannot be used with a subquery; however, the

BETWEEN operator can be used within the subquery.

MARDHIYA HAYATI - STEVI EMA WIJAYANTI

TYPES OF SUB QUERY


Single row subquery : Returns zero or one row.
Multiple row subquery : Returns one or more rows.
Multiple column subquery : Returns one or more columns.
Correlated subqueries : Reference one or more columns in the outer SQL

statement. The subquery is known as a correlated subquery because the


subquery is related to the outer SQL statement.
Nested subqueries : Subqueries are placed within another subqueries.

MARDHIYA HAYATI - STEVI EMA WIJAYANTI

SUB QUERY WITH THE SELECT STATEMENT


A subquery SELECT statement is almost similar to the SELECT statement and it is used to
begin a regular or outer query. Here is the syntax of a subquery :
(SELECT [DISTINCT] subquery_select_argument
FROM {table_name | view_name}
{table_name | view_name} ...
[WHERE search_conditions]
[GROUP BY aggregate_expression [, aggregate_expression] ...]
[HAVING search_conditions])

MARDHIYA HAYATI - STEVI EMA WIJAYANTI

SUB QUERY WITH EQUALITY


You can place a subquery in the WHERE clause of another query.
Example :
SELECT name, address, year_of_birth
FROM Customers
WHERE customer_id = (SELECT customer_id
FROM Customers
WHERE customer_id = 'CUS-000003');

MARDHIYA HAYATI - STEVI EMA WIJAYANTI

SUB QUERY WITH AGGREGATE FUNCTION


Example :
SELECT item_id, name, stok
FROM Items
WHERE purchasing_price > (SELECT AVG(purchasing_price)
FROM Items);

MARDHIYA HAYATI - STEVI EMA WIJAYANTI

SUB QUERY WITH AGGREGATE FUNCTION


Example :
SELECT category_id, AVG(selling_price) AS avg_selling_price
FROM Items
GROUP BY category_id
HAVING AVG(selling_price) >= (SELECT AVG(selling_price)
FROM Items
WHERE category_id = 'CG-003');

MARDHIYA HAYATI - STEVI EMA WIJAYANTI

SUB QUERY USE OF IN


Example :
SELECT *
FROM CUSTOMERS
WHERE NAME IN (Yudha Adisaputra, Meilia, Hadrian Gustin Alvaro);
SELECT *
FROM CUSTOMERS
WHERE REGION_ID IN (WL001, WL003);

MARDHIYA HAYATI - STEVI EMA WIJAYANTI

SUB QUERY USE OF IN


Example :
SELECT *
FROM CUSTOMERS
WHERE CUSTOMER_ID IN (SELECT CUSTOMER_ID
FROM CUSTOMERS
WHERE YEAR_OF_BIRTH BETWEEN 2007 AND 2010);

MARDHIYA HAYATI - STEVI EMA WIJAYANTI

SUB QUERY USE OF NOT IN


Example :
SELECT *
FROM CUSTOMERS
WHERE NAME NOT IN (Yudha Adisaputra, Meilia, Hadrian Gustin Alvaro);
SELECT *
FROM CUSTOMERS
WHERE REGION_ID NOT IN (WL001, WL003);

MARDHIYA HAYATI - STEVI EMA WIJAYANTI

SUB QUERY USE OF EXIST


Example :
SELECT category_id, explanation
FROM Categories
WHERE EXISTS (SELECT *
FROM Items
WHERE Categories.category_id = category_id);

MARDHIYA HAYATI - STEVI EMA WIJAYANTI

SUB QUERY USE OF NOT EXIST


Example :
SELECT category_id, explanation
FROM Categories
WHERE NOT EXISTS (SELECT *
FROM Items
WHERE Categories.category_id = category_id);

MARDHIYA HAYATI - STEVI EMA WIJAYANTI

TASK
Dengan menggunakan subquery tampilkan data konsumen yang memiliki

nama mengandung huruf a dan huruf i.

Tampilkan data konsumen yang pernah membeli barang dan tampilkan

juga data konsumen yang belum pernah melakukan pembelian barang.

Tampilkan jumlah barang per suplayer dari table barang dimana memiliki

stok >= 35 dan barang tersebut telah dibeli oleh konsumen (ditandai
dengan barang tersebut terdapat pada table Purchase_Items)

Tampilkan total harga jual pada tabel barang yang dikelompokkan

berdasarkan id kategori dimana harga jualnya >= 200.000 dan memiliki


rata-rata harga jual > rata-rata harga jual pada id kategori = CG-004
MARDHIYA HAYATI - STEVI EMA WIJAYANTI

SUB QUERY WITH THE INSERT STATEMENT


Subqueries also can be used with INSERT statements. The INSERT statement uses the data
returned from the subquery to insert into another table. The selected data in the subquery
can be modified with any of the character, date or number functions.
The basic syntax is as follows:
INSERT INTO table_name [ (column1 [, column2 ]) ]
SELECT [ *|column1 [, column2 ]
FROM table1 [, table2 ]
[ WHERE VALUE OPERATOR ]

MARDHIYA HAYATI - STEVI EMA WIJAYANTI

SUB QUERY WITH THE INSERT STATEMENT


Consider a table CUSTOMERS_BKP with similar structure as CUSTOMERS table. Now to copy
complete CUSTOMERS table into CUSTOMERS_BKP, following is the syntax :

INSERT INTO CUSTOMERS


SELECT * FROM CUSTOMERS
WHERE ID IN (SELECT ID
FROM CUSTOMERS) ;

MARDHIYA HAYATI - STEVI EMA WIJAYANTI

SUB QUERY WITH THE UPDATE STATEMENT


The subquery can be used in conjunction with the UPDATE statement. Either single or multiple
columns in a table can be updated when using a subquery with the UPDATE statement.
The basic syntax is as follows:
UPDATE table
SET column_name = new_value
[ WHERE OPERATOR [ VALUE ]
(SELECT COLUMN_NAME
FROM TABLE_NAME)
[ WHERE) ]
MARDHIYA HAYATI - STEVI EMA WIJAYANTI

SUB QUERY WITH THE UPDATE STATEMENT


Following example updates SALARY by 0.25 times in CUSTOMERS table for all the customers
whose AGE is greater than or equal to 27:
UPDATE CUSTOMERS
SET Address = Jakarta
WHERE Region_id IN (WL001);

MARDHIYA HAYATI - STEVI EMA WIJAYANTI

SUB QUERY WITH THE DELETE STATEMENT


The subquery can be used in conjunction with the DELETE statement like with any other
statements mentioned above.
The basic syntax is as follows:
DELETE FROM TABLE_NAME
[ WHERE OPERATOR [ VALUE ]
(SELECT COLUMN_NAME
FROM TABLE_NAME)
[ WHERE) ]
MARDHIYA HAYATI - STEVI EMA WIJAYANTI

SUB QUERY WITH THE DELETE STATEMENT


Following example deletes records from CUSTOMERS table for all the customers whose AGE is
greater than or equal to 27:

DELETE FROM CUSTOMERS


WHERE YEAR_OF_BIRTH IN (SELECT YEAR_OF_BIRTH FROM CUSTOMERS
WHERE YEAR_OF_BIRTH > 2014 );

MARDHIYA HAYATI - STEVI EMA WIJAYANTI

You might also like