SQL Introduction
SQL Introduction
DO Ba Lam
lamdb@soict.hust.edu.vn
Contents
Reference: https://www.tutorialspoint.com/sql/index.htm
2
PART 1. SQL LANGUAGE - BASIC
• Datatypes
• Create, Drop, Select Database
• Create, Insert Table
• Where
• And & Or
• Update
• Delete
• Like
• Top
• Order by
• Group by
• Distinct
3
Data Types
4
Data Types
5
CHAR and VARCHAR Data types
• char(n).
• Fixed length character string, with user-specified length n.
• Values are right-padded with spaces to the specific length
• varchar(n).
• Variable length character strings, with maximum length n.
• 1-byte or 2-byte length prefix is used to indicates the number of bytes in the value
6
Create Database
7
Drop Database
8
Select Database
• USE statement is used to select any existing database in the SQL schema.
• Syntax
USE DatabaseName;
Note: database name should be unique within the RDBMS.
• Example:
SQL> SHOW DATABASES;
SQL> USE mysql;
9
Create Table
11
Drop Table
• DROP TABLE statement is used to remove a table definition and all the
data, indexes, triggers, constraints and permission specifications for that
table.
• Syntax
DROP TABLE table_name;
• Example:
SQL> DROP TABLE CUSTOMERS;
Query OK, 0 rows affected (0.01 sec)
12
Insert Query
• INSERT INTO Statement is used to add new rows of data to a table in the
database.
• Syntax
INSERT INTO TABLE_NAME (column1, column2, column3,...columnN)
VALUES (value1, value2, value3,...valueN);
• Example:
INSERT INTO CUSTOMERS (ID,NAME,AGE,ADDRESS,SALARY)
VALUES (1, 'Ramesh', 32, 'Ahmedabad', 2000.00 );
13
Sample data
+----+----------+-----+-----------+----------+
| ID | NAME | AGE | ADDRESS | SALARY |
+----+----------+-----+-----------+----------+
| 1 | Ramesh | 32 | Ahmedabad | 2000.00 |
| 2 | Khilan | 25 | Delhi | 1500.00 |
| 3 | kaushik | 23 | Kota | 2000.00 |
| 4 | Chaitali | 25 | Mumbai | 6500.00 |
| 5 | Hardik | 27 | Bhopal | 8500.00 |
| 6 | Komal | 22 | MP | 4500.00 |
| 7 | Muffy | 24 | Indore | 10000.00 |
+----+----------+-----+-----------+----------+
14
Select Query
• SELECT statement is used to fetch the data from a database table which
returns this data in the form of a result table
• Syntax
SELECT column1, column2, columnN FROM table_name;
15
Where Clause
17
Update Query
18
Delete Query
19
Like Clause
24
Excercise 1
25
Part 2. SQL LANGUAGE - ADVANCED
• ALTER TABLE
• CONSTRAINTS
• JOIN
• UNION, MINUS, INTERSECT
• ALIAS
• Sub Queries
• Functions
26
Alter Table
• Delete a column:
ALTER TABLE CUSTOMERS
DROP SEX;
27
Alter Table
• MySQL
ALTER TABLE table_name
MODIFY COLUMN column_name datatype;
• Example
ALTER TABLE CUSTOMERS
MODIFY COLUMN ADDRESS VARCHAR(30);
28
Alter Table
• Syntax
ALTER TABLE table_name
CHANGE old_column_name new_column_name data_type(length)
• Example
ALTER TABLE CUSTOMERS
CHANGE ADDRESS Diachi varchar(30);
29
Alter Table
• Example
ALTER TABLE CUSTOMERS
RENAME KhachHang;
30
Constraint
• Constraints are the rules enforced on the data columns of a table. These are
used to limit the type of data that can go into a table
1. NOT NULL Constraint − Ensures that a column cannot have NULL
value.
2. DEFAULT Constraint − Provides a default value for a column
3. UNIQUE Constraint − Ensures that all values in a column are
different.
4. PRIMARY Key − Uniquely identifies each row/record in a table.
5. FOREIGN Key − Uniquely identifies a row/record in any of the
given database table.
6. CHECK Constraint − The CHECK constraint ensures that all the
values in a column satisfies certain conditions.
7. INDEX − Used to create and retrieve data from the database
very quickly
31
NULL
• NULL is the term used to represent a missing value. A NULL value in a table
is a value in a field that appears to be blank.
• Define the constraint in a new table
CREATE TABLE CUSTOMERS(
ID INT NOT NULL,
NAME VARCHAR (20) NOT NULL,
AGE INT NOT NULL,
ADDRESS VARCHAR (25) ,
SALARY DECIMAL (18, 2),
PRIMARY KEY (ID)
);
32
NULL
• Example
SELECT ID, NAME, AGE, ADDRESS, SALARY
FROM CUSTOMERS
WHERE SALARY IS NOT NULL;
• Try with: WHERE SALARY IS NULL;
33
NULL
37
UNIQUE
• Show Constraints
SHOW CREATE TABLE CUSTOMERS;
38
UNIQUE
40
Primary Key
41
Foreign Key
A field (or collection of fields) in one table, that refers to the Primary key in
another table.
42
Foreign Key
• Delete/update the rows from the child table automatically, when the rows
from the parent table are deleted/updated
• Define the constraint in a new table
CREATE TABLE Orders2 (
ID int NOT NULL,
DATE datetime,
CUSTOMER_ID int,
AMOUNT double,
PRIMARY KEY (ID),
CONSTRAINT FK_CustomerID2 FOREIGN KEY (CUSTOMER_ID)
REFERENCES Customers(ID)
ON DELETE CASCADE
ON UPDATE CASCADE
);
44
On Delete/Update Cascade
45
CHECK
49
Join Types
• (Inner) Join: return records that have matching values in both tables
• Left (Outer) Join: return all records from the left table, and the matched records
from the right table
• Right (Outer) Join: return all records from the right table, and the matched
records from the left table
• Full (Outer) Join: return all records when there is a match in either left or right
table
50
Inner Join
51
Left Join
• Left (Outer) Join: return all records from the left table, and
the matched records from the right table
• Syntax
SELECT table1.column1, table2.column2...
FROM table1 LEFT JOIN table2
ON table1.common_field =
table2.common_field;
• Example
SELECT CUSTOMERS.ID, NAME, AMOUNT, DATE
FROM CUSTOMERS LEFT JOIN ORDERS
ON CUSTOMERS.ID = ORDERS.CUSTOMER_ID;
52
Right Join
• Right (Outer) Join: return all records from the right table,
and the matched records from the left table
• Syntax
SELECT table1.column1, table2.column2...
FROM table1 RIGHT JOIN table2
ON table1.common_field =
table2.common_field;
• Example
SELECT CUSTOMERS.ID, NAME, AMOUNT, DATE
FROM CUSTOMERS RIGHT JOIN ORDERS
ON CUSTOMERS.ID = ORDERS.CUSTOMER_ID;
53
Full Join
54
CARTESIAN JOIN
• Syntax
SELECT table1.column1,
table2.column2...
FROM table1, table2 [, table3 ]
• Example
SELECT CUSTOMERS.ID, NAME, AMOUNT, DATE
FROM CUSTOMERS, ORDERS;
Join
• Example:
SELECT CUSTOMERS.ID, NAME, AGE, AMOUNT
FROM CUSTOMERS, ORDERS
WHERE CUSTOMERS.ID =
ORDERS.CUSTOMER_ID;
56
Self Join
• Join a table to itself; temporarily renaming at least one table in the SQL
statement.
• Syntax
SELECT a.column_name, b.column_name...
FROM table1 a, table1 b
WHERE a.common_field = b.common_field;
• Example
SELECT a.ID, b.NAME, a.SALARY
FROM CUSTOMERS a, CUSTOMERS b
WHERE a.SALARY < b.SALARY;
57
Union
58
Union
59
MINUS, INTERSECT
61
Sub Queries
62
Operators
• IN: is used to check whether a specific value matches any value in a list
• Syntax:
SELECT column1, column2,…
FROM table1, table2,…
WHERE column1 IN (‘value1’, ‘value2’,…);
• NOT IN: is opposite IN
• EXISTS: is used to check whether the subquery returns any record/row
WHERE EXISTS (subquery)
• NOT EXISTS: is opposite EXISTS
63
Functions
64
DATE functions
SELECT *
FROM CUSTOMERS
WHERE ID IN (SELECT ID
FROM CUSTOMERS
WHERE SALARY > 4500) ;
SELECT *
FROM CUSTOMERS
WHERE ID IN (SELECT CUSTOMER_ID
FROM ORDERS) ;
66
Structure of a query
67