SQL Guide
SQL Guide
A COMPREHENSIVE GUIDE
SQL (Structured
Query Language)
SQL
Possible Time
swipe
Brij Kishore Pandey
WHAT IS SQL?
SQL is a database computer
language used to manage data
stored in relational databases.
SQL stands for Structured Query
Language.
SQL COMMANDS
DDL
These are SQL commands that are
used to define the database
schema. DDL stands for Data
Definition Language.
DDL COMMANDS - CREATE, DROP, ALTER,
TRUNCATE
DML
These are SQL commands that are
used to manipulate the data
present in the database. DML
stands for Data Manipulation
Language.
SQL COMMANDS
DCL
These are SQL commands that deal
with rights, permissions, and other
controls of the database system.
DCL stands for Data Control
Language.
DCL COMMANDS - GRANT, REVOKE
TCL
These are SQL commands that deal
with the transactions happening in
the database. TCL stands for
Transaction Control Language.
SQL COMMANDS
DQL
These are SQL commands that are
used to retreive data present in the
database. DQL stands for Data
Query Language.
DATABASE QUERIES
CREATE DATABASE
This statement is used to create a
new SQL database.
CREATE DATABASE DATABASENAME;
EXAMPLE
USE DATABASE
This statement is used to select an
SQL database for usage.
USE DATABASENAME;
EXAMPLE
USE COMPANY;
DATABASE QUERIES
LIST DATABASES
This statement is used to list down
all the available databases.
SHOW DATABASES;
DROP DATABASE
This statement is used to delete an
existing database along with all the
data such as tables, views, indexes,
etc.
EXAMPLE
CREATE TABLE
This statement is used to create a
new table in a database.
column-1 datatype,
column-2 datatype,...,
column-N datatype);
EXAMPLE
EMPID int,
FIRSTName varchar(70),
LASTName varchar(70),
City varchar(50)
INSERT VALUES
This statement is used to insert
new records in a table.
EXAMPLE
ALABAMA', 52750);
INSERT INTO EMPLOYEES VALUES(
SELECT QUERY
This statement is used to retrieve
data and display it as a table. These
tables are called result-sets.
DISPLAY ALL COLUMNS
EXAMPLE
OUTPUT
EMPLOYEES TABLE
Consider this table for the next few
concepts explained.
EXAMPLE TABLE
SELECT DISTINCT
This statement is used to return
only distinct (different) values.
SELECT DISTINCT column1,
QUERY
EMPLOYEES;
OUTPUT
CITY
ALABAMA
FLORIDA
OHIO
GEORGIA
NEVADA
TEXAS
WHERE CLAUSE
This statement is used to filter
records. It is used to extract only
those records that fulfill a specified
condition.
QUERY
OUTPUT
ORDER BY
This statement is used to sort the
result set in ascending or
descending order.
QUERY
ORDER BY
OUTPUT
AND Operator
The AND operator is used to filter
records based on more than one
condition. The records must match
both the condition.
tablename WHERE
EXAMPLE
OUTPUT
empid
10003
10008
OR Operator
The OR operator is used to filter
records based on more than one
condition. The records must match
any of the conditions.
tablename WHERE
condITION1 OR condition2;
EXAMPLE
CITY = 'TEXAS';
OUTPUT
FIRSTNAME
JAKE
DAVID
NOT Operator
The NOT operator is used in combo
with other operators to give the
opposite result. It is also called as
the negative result.
EXAMPLE
OUTPUT
Aggregate Functions
An aggregate function is a
function that performs a
calculation on a set of values, and
returns a single value.
MIN
The MIN function returns the
smallest value of the selected
column.
EXAMPLE
OUTPUT
MIN(SALARY)
23450.00
MAX
The MAX function returns the
largest value of the selected
column.
EXAMPLE
OUTPUT
Max(SALARY)
55000.00
COUNT
The COUNT function returns the
number of rows that matches a
specified criterion.
EXAMPLE
OUTPUT
COUNT(*)
SUM
The SUM function returns the total
sum of a numeric column.
EXAMPLE
SELECT SUM(SALARY)
FROM employees
OUTPUT
SUM(SALARY)
107750.00
AVG
The AVG function returns the
average of a numeric column.
EXAMPLE
SELECT AVG(SALARY)FROM
employees;
OUTPUT
AVG(SALARY)
39642
GROUP BY
The GROUP BY statement groups
rows that have the same values into
summary rows.
SELECT columnname(s)FROM
tablename
column_name(s);
EXAMPLE
SELECT COUNT(EMPID), CITY
FROM EMPLOYEEs GROUP BY CITY;
GROUP BY
OUTPUT
COUNT(EMPID) CITY
2 ALABAMA
2 FLORIDA
2 OHIO
2 GEORGIA
1 NEVADA
1 TEXAS
HAVING Clause
The HAVING clause was added to
SQL because the WHERE keyword
cannot be used with aggregate
functions.
SELECT columnname(s)FROM
EXAMPLE
OUTPUT
COUNT(EMPID) CITY
1 NEVADA
1 TEXAS
LIKE Operator
The LIKE operator is used in
a WHERE clause to search for a
specified pattern in a column.
There are two wildcards often
used with the LIKE operator.
SELECT column-1,column-2
FROM tablename WHERE
EXAMPLE
LIKE OPERATOR
OUTPUT
IN Operator
The IN operator allows you to specify
multiple values in a WHERE clause.
The IN operator is a shorthand for
multiple OR conditions.
SELECT columnname(s)
FROM tablename
OUTPUT
BETWEEN Operator
The BETWEEN operator selects
values within a given range. The
values can be numbers, text, or
dates. It is inclusive: begin and end
values are included.
OUTPUT
UPDATE QUERY
This statement is used to modify
the existing records in a table.
QUERY
UPDATE EMPLOYEEs
SET FIRSTName = 'LUKE'
WHERE EMPID = 10003;
UPDATED ROW
DELETE QUERY
This statement is used to delete
existing records in a table.
condition;
QUERY
EMPID = 10008;
DELETED ROW
DROP TABLE
This statement is used to drop an
existing table in a database.
EXAMPLE
TRUNCATE TABLE
EXAMPLE
ALTER TABLE
This statement is used to add,
delete, or modify columns in an
existing table and also used to add
and drop various constraints on an
existing table.
ADD COLUMN
ALTER TABLE tablename ADD
columnname datatype;
EXAMPLE
ALTER TABLE
DROP COLUMN
ALTER TABLE tablename DROP
COLUMN columnname;
EXAMPLE
COLUMN BONUS;
RENAME COLUMN
ALTER TABLE tablename RENAME
ALTER TABLE
EXAMPLE
MODIFY DATATYPE
ALTER TABLE tablename MODIFY
EXAMPLE
Constraints
SQL constraints are used to
specify rules for the data in a
table. Constraints are used to limit
the type of data that can go into a
table.
CONSTRAINTS swipe
Brij Kishore Pandey
Constraints
NOT NULL
This constraint enforces a column
to not accept NULL values.
EXAMPLE
firstName varchar(70),
lastName varchar(70),
CONSTRAINTS swipe
Brij Kishore Pandey
Constraints
UNIQUE
This constraint ensures that all
values in a column are different.
EXAMPLE
CONSTRAINTS swipe
Brij Kishore Pandey
Constraints
PRIMARY KEY
This constraint uniquely identifies
each record in a table. Primary keys
must contain UNIQUE values, and
cannot contain NULL values.
EXAMPLE
CONSTRAINTS swipe
Brij Kishore Pandey
Constraints
CHECK
This constraint is used to limit the
value range that can be placed in a
column.
EXAMPLE
CONSTRAINTS swipe
Brij Kishore Pandey
Constraints
DEFAULT
This constraint is used to set a
default value for a column. The
default value will be added to all
new records, if no other value is
specified.
EXAMPLE
CONSTRAINTS swipe
Brij Kishore Pandey
EXAMPLE TABLES
Consider these two tables for the
next few concepts explained.
PERSONS TABLE
1 MARCO JANSEN 28
2 ASHIF BASHA 24
3 MONISH KUMAR 26
ORDERS TABLE
1 34578 2
2 45876 1
3 55900 2
4 22089 3
Constraints
FOREIGN KEY
This constraint is used to prevent
actions that would destroy links
between tables.
QUERY
REFERENCES Persons(PID);
CONSTRAINTS swipe
Brij Kishore Pandey
ANY OPERATOR
The ANY operator returns a boolean
value as a result and returns TRUE if
any of the subquery values meet
the condition.
QUERY
ANY OPERATOR
OUTPUT
FIRSTNAME
MARCO
ASHIF
ALL OPERATOR
The ALL operator returns a boolean
value as a result and returns TRUE if
all of the subquery values meet the
condition.
QUERY
ALL OPERATOR
OUTPUT
empty table
SQL JOINs
A JOIN clause is used to combine
rows from two or more tables,
based on a related column
between them.
TYPES OF JOINS
INNER JOIN
The INNER JOIN keyword selects
records that have matching values
in both tables.
SELECT columnname(s)FROM
table2 ON table1.colname =
table2.colname;
QUERY
FROM PERSONs
PERSONs.PID = ORDERs.PID;
INNER JOIN
OUTPUT
MARCO 28 2
ASHIF 24 3
ASHIF 24 1
MONISH 26 4
LEFT JOIN
The LEFT JOIN keyword returns
all records from the left table, and
the matching records from the right
table. The result is 0 records from
the right side, if there is no match.
table2 ON table1.colname =
table2.colname;
QUERY
LEFT JOIN
OUTPUT
JANSEN 1 45876
BASHA 2 34578
BASHA 2 55900
KUMAR 3 22089
RIGHT JOIN
The RIGHT JOIN keyword returns
all records from the right table, and
the matching records from the left
table. The result is 0 records from
the left side, if there is no match.
table2 ON table1.colname =
table2.colname;
QUERY
RIGHT JOIN
OUTPUT
BASHA 2 34578
JANSEN 1 45876
BASHA 2 55900
KUMAR 3 22089
table2 ON table1.colname =
QUERY
JANSEN 1 45876
BASHA 2 34578
BASHA 2 55900
KUMAR 3 22089
Aliases
SQL aliases are used to give a table,
or a column in a table, a temporary
name.
QUERY
ORDERS TABLE
id
Stored Procedure
A stored procedure is a prepared
SQL code that you can save, so the
code can be reused over and over
again.
Stored Procedure
CREATE PROCEDURE procedurename
AS
sqlstatement
GO;
QUERY
EXEC AllPERSONs;
OUTPUT
1 MARCO JANSEN 28
2 ASHIF BASHA 24
3 MONISH KUMAR 26
Follow Me On
LinkedIn
https://www.linkedin.com/in/brijpandeyji/