SQL Tutorial Naresh Dembla (3)
SQL Tutorial Naresh Dembla (3)
In this tutorial you will learn how to use SQL to access and manipulate data in MS Access,
SQL Server, MySQL, Oracle, Sybase, DB2, and other database systems.
What is SQL?
Although SQL is an ANSI (American National Standards Institute) standard, there are many
different versions of the SQL language.
However, to be compliant with the ANSI standard, they all support at least the major commands
(such as SELECT, UPDATE, DELETE, INSERT, WHERE) in a similar manner.
Note: Most of the SQL database programs also have their own proprietary extensions in addition to
the SQL standard!
RDBMS
RDBMS is the basis for SQL, and for all modern database systems like MS SQL Server, IBM DB2,
Oracle, MySQL, and Microsoft Access.
A table is a collections of related data entries and it consists of columns and rows
Page 1 Page 1 of 64
Database Tables
A database most often contains one or more tables. Each table is identified by a name (e.g.
"Customers" or "Orders"). Tables contain records (rows) with data.
The table above contains three records (one for each person) and five columns (P_Id, LastName,
FirstName, Address, and City).
SQL Statements
Most of the actions you need to perform on a database are done with SQL statements.
The following SQL statement will select all the records in the "Persons" table:
In this tutorial we will teach you all about the different SQL statements.
Some database systems require a semicolon at the end of each SQL statement.
Semicolon is the standard way to separate each SQL statement in database systems that allow
more than one SQL statement to be executed in the same call to the server.
We are using MS Access and SQL Server 2000 and we do not have to put a semicolon after each
SQL statement, but some database programs force you to use it.
SQL can be divided into two parts: The Data Manipulation Language (DML) and the Data Definition
Language (DDL).
The query and update commands form the DML part of SQL:
Page 2 Page 2 of 64
The DDL part of SQL permits database tables to be created or deleted. It also define indexes (keys),
specify links between tables, and impose constraints between tables. The most important DDL
statements in SQL are:
This chapter will explain the SELECT and the SELECT * statements.
SELECT column_name(s)
FROM table_name
and
Page 3 Page 3 of 64
This chapter will explain the SELECT DISTINCT statement.
In a table, some of the columns may contain duplicate values. This is not a problem, however,
sometimes you will want to list only the different (distinct) values in a table.
The DISTINCT keyword can be used to return only distinct (different) values.
Now we want to select only the distinct values from the column named "City" from the table above.
City
Sandnes
Stavanger
The WHERE clause is used to extract only those records that fulfill a specified criterion.
SELECT column_name(s)
FROM table_name
Page 4 Page 4 of 64
WHERE column_name operator value
Now we want to select only the persons living in the city "Sandnes" from the table above.
SQL uses single quotes around text values (most database systems will also accept double quotes).
This is correct:
SELECT * FROM Persons WHERE FirstName='Tove'
This is wrong:
SELECT * FROM Persons WHERE FirstName=Tove
This is correct:
SELECT * FROM Persons WHERE Year=1965
This is wrong:
SELECT * FROM Persons WHERE Year='1965'
Page 5 Page 5 of 64
Operator Description
= Equal
<> Not equal
> Greater than
< Less than
>= Greater than or equal
<= Less than or equal
BETWEEN Between an inclusive range
LIKE Search for a pattern
IN If you know the exact value you want to return
for at least one of the columns
The AND & OR operators are used to filter records based on more than one condition.
The AND operator displays a record if both the first condition and the second condition is true.
The OR operator displays a record if either the first condition or the second condition is true.
Now we want to select only the persons with the first name equal to "Tove" AND the last name
equal to "Svendson":
OR Operator Example
Page 6 Page 6 of 64
Now we want to select only the persons with the first name equal to "Tove" OR the first name equal
to "Ola":
You can also combine AND and OR (use parenthesis to form complex expressions).
Now we want to select only the persons with the last name equal to "Svendson" AND the first name
equal to "Tove" OR to "Ola":
If you want to sort the records in a descending order, you can use the DESC keyword.
SELECT column_name(s)
FROM table_name
ORDER BY column_name(s) ASC|DESC
Page 7 Page 7 of 64
ORDER BY Example
Now we want to select all the persons from the table above, however, we want to sort the persons
by their last name.
Now we want to select all the persons from the table above, however, we want to sort the persons
descending by their last name.
The TOP clause can be very useful on large tables with thousands of records. Returning a large
number of records can impact on performance.
Page 8 Page 8 of 64
SQL SELECT TOP Syntax
Now we want to select only the two first records in the table above.
Now we want to select only 50% of the records in the table above.
Page 9 Page 9 of 64
Test your SQL Skills
To preserve space, the table above is a subset of the Customers table used in the example below.
Try it Yourself
To see how SQL works, you can copy the SQL statements below and paste them into the textarea,
or you can make your own SQL statements.
When using SQL on text data, "alfred" is greater than "a" (like in a dictionary).
Page 10 Page 10 of 64
WHERE CompanyName > 'g'
AND ContactName > 'g'
The LIKE operator is used in a WHERE clause to search for a specified pattern in a
column.
SELECT column_name(s)
FROM table_name
WHERE column_name LIKE pattern
Now we want to select the persons living in a city that starts with "s" from the table above.
The "%" sign can be used to define wildcards (missing letters in the pattern) both before and after
the pattern.
Next, we want to select the persons living in a city that ends with an "s" from the "Persons" table.
Page 11 Page 11 of 64
P_Id LastName FirstName Address City
1 Hansen Ola Timoteivn 10 Sandnes
2 Svendson Tove Borgvn 23 Sandnes
Next, we want to select the persons living in a city that contains the pattern "tav" from the
"Persons" table.
It is also possible to select the persons living in a city that NOT contains the pattern "tav" from the
"Persons" table, by using the NOT keyword.
SQL Wildcards
SQL wildcards can substitute for one or more characters when searching for data in a database.
Wildcard Description
% A substitute for zero or more characters
_ A substitute for exactly one character
[charlist] Any single character in charlist
[^charlist] Any single character not in charlist
or
Page 12 Page 12 of 64
[!charlist]
Now we want to select the persons living in a city that starts with "sa" from the "Persons" table.
Next, we want to select the persons living in a city that contains the pattern "nes" from the
"Persons" table.
Now we want to select the persons with a first name that starts with any character, followed by "la"
from the "Persons" table.
Page 13 Page 13 of 64
WHERE FirstName LIKE '_la'
Next, we want to select the persons with a last name that starts with "S", followed by any
character, followed by "end", followed by any character, followed by "on" from the "Persons" table.
Now we want to select the persons with a last name that starts with "b" or "s" or "p" from the
"Persons" table.
Next, we want to select the persons with a last name that do not start with "b" or "s" or "p" from
the "Persons" table.
The IN Operator
Page 14 Page 14 of 64
The IN operator allows you to specify multiple values in a WHERE clause.
SQL IN Syntax
SELECT column_name(s)
FROM table_name
WHERE column_name IN (value1,value2,...)
IN Operator Example
Now we want to select the persons with a last name equal to "Hansen" or "Pettersen" from the table
above.
The BETWEEN operator is used in a WHERE clause to select a range of data between two
values.
The BETWEEN operator selects a range of data between two values. The values can be numbers,
text, or dates.
SELECT column_name(s)
FROM table_name
WHERE column_name
BETWEEN value1 AND value2
Page 15 Page 15 of 64
BETWEEN Operator Example
Now we want to select the persons with a last name alphabetically between "Hansen" and
"Pettersen" from the table above.
In some databases a person with the LastName of "Hansen" or "Pettersen" will not be listed
(BETWEEN only selects fields that are between and excluding the test values).
In other databases a person with the last name of "Hansen" or "Pettersen" will be listed (BETWEEN
selects fields that are between and including the test values).
And in other databases a person with the last name of "Hansen" will be listed, but "Pettersen" will
not be listed (BETWEEN selects fields between the test values, including the first test value and
excluding the last test value).
Example 2
To display the persons outside the range in the previous example, use NOT BETWEEN:
Page 16 Page 16 of 64
With SQL, an alias name can be given to a table or to a column.
SQL Alias
You can give a table or a column another name by using an alias. This can be a good thing to do if
you have very long or complex table names or column names.
SELECT column_name(s)
FROM table_name
AS alias_name
Alias Example
Assume we have a table called "Persons" and another table called "Product_Orders". We will give
the table aliases of "p" an "po" respectively.
Now we want to list all the orders that "Ola Hansen" is responsible for.
As you'll see from the two SELECT statements above; aliases can make queries easier to both write
and to read.
The JOIN keyword is used to query data from two or more tables, based on a relationship
between certain columns in these tables.
Page 17 Page 17 of 64
SQL JOIN
The JOIN keyword is used in an SQL statement to query data from two or more tables, based on a
relationship between certain columns in these tables.
A primary key is a column with a unique value for each row. Each primary key value must be unique
within the table. The purpose is to bind data together, across tables, without repeating all of the
data in every table.
Note that the "P_Id" column is the primary key in the "Persons" table. This means that no two rows
can have the same P_Id. The P_Id distinguishes two persons even if they have the same name.
Note that the "O_Id" column is the primary key in the "Orders" table and that the "P_Id" column
refers to the persons in the "Persons" table without using their names.
Notice that the relationship between the two tables above is the "P_Id" column.
Before we continue with examples, we will list the types of JOIN you can use, and the differences
between them.
JOIN: Return rows when there is at least one match in both tables
LEFT JOIN: Return all rows from the left table, even if there are no matches in the right
table
RIGHT JOIN: Return all rows from the right table, even if there are no matches in the left
table
FULL JOIN: Return rows when there is a match in one of the tables
The INNER JOIN keyword return rows when there is at least one match in both tables.
Page 18 Page 18 of 64
SELECT column_name(s)
FROM table_name1
INNER JOIN table_name2
ON table_name1.column_name=table_name2.column_name
The INNER JOIN keyword return rows when there is at least one match in both tables. If there are
rows in "Persons" that do not have matches in "Orders", those rows will NOT be listed.
The LEFT JOIN keyword returns all rows from the left table (table_name1), even if there are no
matches in the right table (table_name2).
Page 19 Page 19 of 64
SQL LEFT JOIN Syntax
SELECT column_name(s)
FROM table_name1
LEFT JOIN table_name2
ON table_name1.column_name=table_name2.column_name
Now we want to list all the persons and their orders - if any, from the tables above.
The LEFT JOIN keyword returns all the rows from the left table (Persons), even if there are no
matches in the right table (Orders).
Page 20 Page 20 of 64
The RIGHT JOIN keyword Return all rows from the right table (table_name2), even if there are no
matches in the left table (table_name1).
SELECT column_name(s)
FROM table_name1
RIGHT JOIN table_name2
ON table_name1.column_name=table_name2.column_name
Now we want to list all the orders with containing persons - if any, from the tables above.
The RIGHT JOIN keyword returns all the rows from the right table (Orders), even if there are no
matches in the left table (Persons).
Page 21 Page 21 of 64
SQL FULL JOIN Keyword
The FULL JOIN keyword return rows when there is a match in one of the tables.
SELECT column_name(s)
FROM table_name1
FULL JOIN table_name2
ON table_name1.column_name=table_name2.column_name
Now we want to list all the persons and their orders, and all the orders with their persons.
The FULL JOIN keyword returns all the rows from the left table (Persons), and all the rows from the
right table (Orders). If there are rows in "Persons" that do not have matches in "Orders", or if there
are rows in "Orders" that do not have matches in "Persons", those rows will be listed as well.
Page 22 Page 22 of 64
The SQL UNION operator combines two or more SELECT statements.
The UNION operator is used to combine the result-set of two or more SELECT statements.
Notice that each SELECT statement within the UNION must have the same number of columns. The
columns must also have similar data types. Also, the columns in each SELECT statement must be in
the same order.
Note: The UNION operator selects only distinct values by default. To allow duplicate values, use
UNION ALL.
PS: The column names in the result-set of a UNION are always equal to the column names in the
first SELECT statement in the UNION.
"Employees_Norway":
E_ID E_Name
01 Hansen, Ola
02 Svendson, Tove
03 Svendson, Stephen
04 Pettersen, Kari
"Employees_USA":
E_ID E_Name
01 Turner, Sally
02 Kent, Clark
03 Svendson, Stephen
04 Scott, Stephen
Now we want to list all the different employees in Norway and USA.
Page 23 Page 23 of 64
We use the following SELECT statement:
E_Name
Hansen, Ola
Svendson, Tove
Svendson, Stephen
Pettersen, Kari
Turner, Sally
Kent, Clark
Scott, Stephen
Note: This command cannot be used to list all employees in Norway and USA. In the example
above we have two employees with equal names, and only one of them will be listed. The UNION
command selects only distinct values.
Result
E_Name
Hansen, Ola
Svendson, Tove
Svendson, Stephen
Pettersen, Kari
Turner, Sally
Kent, Clark
Svendson, Stephen
Scott, Stephen
The SQL SELECT INTO statement can be used to create backup copies of tables.
The SELECT INTO statement selects data from one table and inserts it into a different table.
The SELECT INTO statement is most often used to create backup copies of tables.
Page 24 Page 24 of 64
SQL SELECT INTO Syntax
SELECT *
INTO new_table_name [IN externaldatabase]
FROM old_tablename
Or we can select only the columns we want into the new table:
SELECT column_name(s)
INTO new_table_name [IN externaldatabase]
FROM old_tablename
Make a Backup Copy - Now we want to make an exact copy of the data in our "Persons" table.
SELECT *
INTO Persons_Backup
FROM Persons
We can also use the IN clause to copy the table into another database:
SELECT *
INTO Persons_Backup IN 'Backup.mdb'
FROM Persons
We can also copy only a few fields into the new table:
SELECT LastName,FirstName
INTO Persons_Backup
FROM Persons
The following SQL statement creates a "Persons_Backup" table with only the persons who lives in
the city "Sandnes":
SELECT LastName,Firstname
INTO Persons_Backup
FROM Persons
WHERE City='Sandnes'
Page 25 Page 25 of 64
Selecting data from more than one table is also possible.
The following example creates a "Persons_Order_Backup" table contains data from the two tables
"Persons" and "Orders":
SELECT Persons.LastName,Orders.OrderNo
INTO Persons_Order_Backup
FROM Persons
INNER JOIN Orders
ON Persons.P_Id=Orders.P_Id
The data type specifies what type of data the column can hold. For a complete reference of all the
data types available in MS Access, MySQL, and SQL Server, go to our complete Data Types
reference.
Page 26 Page 26 of 64
Now we want to create a table called "Persons" that contains five columns: P_Id, LastName,
FirstName, Address, and City.
The P_Id column is of type int and will hold a number. The LastName, FirstName, Address, and City
columns are of type varchar with a maximum length of 255 characters.
The empty table can be filled with data with the INSERT INTO statement.
SQL Constraints
Constraints are used to limit the type of data that can go into a table.
Constraints can be specified when a table is created (with the CREATE TABLE statement) or after
the table is created (with the ALTER TABLE statement).
NOT NULL
UNIQUE
PRIMARY KEY
FOREIGN KEY
CHECK
DEFAULT
The NOT NULL constraint enforces a column to NOT accept NULL values.
The following SQL enforces the "P_Id" column and the "LastName" column to not accept NULL
values:
Page 27 Page 27 of 64
(
P_Id int NOT NULL,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Address varchar(255),
City varchar(255)
)
The UNIQUE and PRIMARY KEY constraints both provide a guarantee for uniqueness for a column or
set of columns.
Note that you can have have many UNIQUE constraints per table, but only one PRIMARY KEY
constraint per table.
The following SQL creates a UNIQUE constraint on the "P_Id" column when the "Persons" table is
created:
MySQL:
To allow naming of a UNIQUE constraint, and for defining a UNIQUE constraint on multiple columns,
use the following SQL syntax:
Page 28 Page 28 of 64
CREATE TABLE Persons
(
P_Id int NOT NULL,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Address varchar(255),
City varchar(255),
CONSTRAINT uc_PersonID UNIQUE (P_Id,LastName)
)
To create a UNIQUE constraint on the "P_Id" column when the table is already created, use the
following SQL:
To allow naming of a UNIQUE constraint, and for defining a UNIQUE constraint on multiple columns,
use the following SQL syntax:
The PRIMARY KEY constraint uniquely identifies each record in a database table.
Each table should have a primary key, and each table can have only one primary key.
The following SQL creates a PRIMARY KEY on the "P_Id" column when the "Persons" table is
created:
MySQL:
Page 29 Page 29 of 64
Address varchar(255),
City varchar(255),
PRIMARY KEY (P_Id)
)
To allow naming of a PRIMARY KEY constraint, and for defining a PRIMARY KEY constraint on
multiple columns, use the following SQL syntax:
To create a PRIMARY KEY constraint on the "P_Id" column when the table is already created, use
the following SQL:
To allow naming of a PRIMARY KEY constraint, and for defining a PRIMARY KEY constraint on
multiple columns, use the following SQL syntax:
Note: If you use the ALTER TABLE statement to add a primary key, the primary key column(s)
must already have been declared to not contain NULL values (when the table was first created).
Page 30 Page 30 of 64
To DROP a PRIMARY KEY Constraint
MySQL:
Let's illustrate the foreign key with an example. Look at the following two tables:
Note that the "P_Id" column in the "Orders" table points to the "P_Id" column in the "Persons"
table.
The "P_Id" column in the "Persons" table is the PRIMARY KEY in the "Persons" table.
The "P_Id" column in the "Orders" table is a FOREIGN KEY in the "Orders" table.
The FOREIGN KEY constraint is used to prevent actions that would destroy link between tables.
The FOREIGN KEY constraint also prevents that invalid data is inserted into the foreign key column,
because it has to be one of the values contained in the table it points to.
The following SQL creates a FOREIGN KEY on the "P_Id" column when the "Orders" table is created:
Page 31 Page 31 of 64
MySQL:
To allow naming of a FOREIGN KEY constraint, and for defining a FOREIGN KEY constraint on
multiple columns, use the following SQL syntax:
To create a FOREIGN KEY constraint on the "P_Id" column when the "Orders" table is already
created, use the following SQL:
To allow naming of a FOREIGN KEY constraint, and for defining a FOREIGN KEY constraint on
multiple columns, use the following SQL syntax:
Page 32 Page 32 of 64
REFERENCES Persons(P_Id)
MySQL:
The CHECK constraint is used to limit the value range that can be placed in a column.
If you define a CHECK constraint on a single column it allows only certain values for this column.
If you define a CHECK constraint on a table it can limit the values in certain columns based on
values in other columns in the row.
The following SQL creates a CHECK constraint on the "P_Id" column when the "Persons" table is
created. The CHECK constraint specifies that the column "P_Id" must only include integers greater
than 0.
My SQL:
Page 33 Page 33 of 64
Address varchar(255),
City varchar(255)
)
To allow naming of a CHECK constraint, and for defining a CHECK constraint on multiple columns,
use the following SQL syntax:
To create a CHECK constraint on the "P_Id" column when the table is already created, use the
following SQL:
To allow naming of a CHECK constraint, and for defining a CHECK constraint on multiple columns,
use the following SQL syntax:
The default value will be added to all new records, if no other value is specified.
The following SQL creates a DEFAULT constraint on the "City" column when the "Persons" table is
created:
Page 34 Page 34 of 64
CREATE TABLE Persons
(
P_Id int NOT NULL,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Address varchar(255),
City varchar(255) DEFAULT 'Sandnes'
)
The DEFAULT constraint can also be used to insert system values, by using functions like
GETDATE():
To create a DEFAULT constraint on the "City" column when the table is already created, use the
following SQL:
MySQL:
MySQL:
Page 35 Page 35 of 64
Indexes allow the database application to find data fast; without reading the whole table.
Indexes
An index can be created in a table to find data more quickly and efficiently.
The users cannot see the indexes, they are just used to speed up searches/queries.
Note: Updating a table with indexes takes more time than updating a table without (because the
indexes also need an update). So you should only create indexes on columns (and tables) that will
be frequently searched against.
Note: The syntax for creating indexes varies amongst different databases. Therefore: Check the
syntax for creating indexes in your database.
The SQL statement below creates an index named "PIndex" on the "LastName" column in the
"Persons" table:
If you want to create an index on a combination of columns, you can list the column names within
the parentheses, separated by commas:
Indexes, tables, and databases can easily be deleted/removed with the DROP statement.
Page 36 Page 36 of 64
The DROP INDEX statement is used to delete an index in a table.
What if we only want to delete the data inside the table, and not the table itself?
The ALTER TABLE statement is used to add, delete, or modify columns in an existing table.
Page 37 Page 37 of 64
ALTER TABLE table_name
ADD column_name datatype
To delete a column in a table, use the following syntax (notice that some database systems don't
allow deleting a column):
To change the data type of a column in a table, use the following syntax:
Notice that the new column, "DateOfBirth", is of type date and is going to hold a date. The data
type specifies what type of data the column can hold. For a complete reference of all the data types
available in MS Access, MySQL, and SQL Server, go to our complete Data Types reference.
Now we want to change the data type of the column named "DateOfBirth" in the "Persons" table.
Page 38 Page 38 of 64
Notice that the "DateOfBirth" column is now of type year and is going to hold a year in a two-digit
or four-digit format.
Next, we want to delete the column named "DateOfBirth" in the "Persons" table.
The first form doesn't specify the column names where the data will be inserted, only their values:
The second form specifies both the column names and the values to be inserted:
Page 39 Page 39 of 64
Now we want to insert a new row in the "Persons" table.
The following SQL statement will add a new row, but only add data in the "P_Id", "LastName" and
the "FirstName" columns:
UPDATE table_name
SET column1=value, column2=value2,...
WHERE some_column=some_value
Note: Notice the WHERE clause in the UPDATE syntax. The WHERE clause specifies which record or
records that should be updated. If you omit the WHERE clause, all records will be updated!
Page 40 Page 40 of 64
SQL UPDATE Example
Now we want to update the person "Tjessem, Jakob" in the "Persons" table.
UPDATE Persons
SET Address='Nissestien 67', City='Sandnes'
WHERE LastName='Tjessem' AND FirstName='Jakob'
Be careful when updating records. If we had omitted the WHERE clause in the example above, like
this:
UPDATE Persons
SET Address='Nissestien 67', City='Sandnes'
Page 41 Page 41 of 64
The DELETE Statement
Note: Notice the WHERE clause in the DELETE syntax. The WHERE clause specifies which record or
records that should be deleted. If you omit the WHERE clause, all records will be deleted!
Now we want to delete the person "Tjessem, Jakob" in the "Persons" table.
It is possible to delete all rows in a table without deleting the table. This means that the table
structure, attributes, and indexes will be intact:
Note: Be very careful when deleting records. You cannot undo this statement!
Page 42 Page 42 of 64
A view is a virtual table.
A view contains rows and columns, just like a real table. The fields in a view are fields from one or
more real tables in the database.
You can add SQL functions, WHERE, and JOIN statements to a view and present the data as if the
data were coming from one single table.
Note: A view always shows up-to-date data! The database engine recreates the data, using the
view's SQL statement, every time a user queries a view.
If you have the Northwind database you can see that it has several views installed by default.
The view "Current Product List" lists all active products (products that are not discontinued) from
the "Products" table. The view is created with the following SQL:
Another view in the Northwind sample database selects every product in the "Products" table with a
unit price higher than the average unit price:
Page 43 Page 43 of 64
Another view in the Northwind database calculates the total sale for each category in 1997. Note
that this view selects its data from another view called "Product Sales for 1997":
We can also add a condition to the query. Now we want to see the total sale only for the category
"Beverages":
Page 44 Page 44 of 64
SQL has many built-in functions for performing calculations on data.
SQL aggregate functions return a single value, calculated from values in a column.
SQL scalar functions return a single value, based on the input value.
Tip: The aggregate functions and the scalar functions will be explained in details in the next
chapters.
Page 45 Page 45 of 64
3 2008/09/02 700 Hansen
4 2008/09/03 300 Hansen
5 2008/08/30 2000 Jensen
6 2008/10/04 100 Nilsen
OrderAverage
950
The COUNT() function returns the number of rows that matches a specified criteria.
The COUNT(column_name) function returns the number of values (NULL values will not be counted)
of the specified column:
The COUNT(DISTINCT column_name) function returns the number of distinct values of the specified
column:
Note: COUNT(DISTINCT) works with ORACLE and Microsoft SQL Server, but not with Microsoft
Access.
Page 46 Page 46 of 64
2 2008/10/23 1600 Nilsen
3 2008/09/02 700 Hansen
4 2008/09/03 300 Hansen
5 2008/08/30 2000 Jensen
6 2008/10/04 100 Nilsen
The result of the SQL statement above will be 2, because the customer Nilsen has made 2 orders in
total:
CustomerNilsen
2
NumberOfOrders
6
Now we want to count the number of unique customers in the "Orders" table.
NumberOfCustomers
3
which is the number of unique customers (Hansen, Nilsen, and Jensen) in the "Orders" table.
Page 47 Page 47 of 64
The FIRST() function returns the first value of the selected column.
FirstOrderPrice
1000
The LAST() function returns the last value of the selected column.
Page 48 Page 48 of 64
Now we want to find the last value of the "OrderPrice" column.
LastOrderPrice
100
The MAX() function returns the largest value of the selected column.
LargestOrderPrice
2000
The MIN() function returns the smallest value of the selected column.
Page 49 Page 49 of 64
SELECT MIN(column_name) FROM table_name
SmallestOrderPrice
100
Page 50 Page 50 of 64
SELECT SUM(OrderPrice) AS OrderTotal FROM Orders
OrderTotal
5700
The GROUP BY statement is used in conjunction with the aggregate functions to group the result-set
by one or more columns.
Now we want to find the total sum (total order) of each customer.
Customer SUM(OrderPrice)
Hansen 2000
Nilsen 1700
Jensen 2000
Page 51 Page 51 of 64
Nice! Isn't it? :)
Customer SUM(OrderPrice)
Hansen 5700
Nilsen 5700
Hansen 5700
Hansen 5700
Jensen 5700
Nilsen 5700
Explanation of why the above SELECT statement cannot be used: The SELECT statement
above has two columns specified (Customer and SUM(OrderPrice). The "SUM(OrderPrice)" returns a
single value (that is the total sum of the "OrderPrice" column), while "Customer" returns 6 values
(one value for each row in the "Orders" table). This will therefore not give us the correct result.
However, you have seen that the GROUP BY statement solves this problem.
We can also use the GROUP BY statement on more than one column, like this:
The HAVING clause was added to SQL because the WHERE keyword could not be used with
aggregate functions.
Page 52 Page 52 of 64
1 2008/11/12 1000 Hansen
2 2008/10/23 1600 Nilsen
3 2008/09/02 700 Hansen
4 2008/09/03 300 Hansen
5 2008/08/30 2000 Jensen
6 2008/10/04 100 Nilsen
Now we want to find if any of the customers have a total order of less than 2000.
Customer SUM(OrderPrice)
Nilsen 1700
Now we want to select the content of the "LastName" and "FirstName" columns above, and convert
the "LastName" column to uppercase.
LastName FirstName
HANSEN Ola
SVENDSON Tove
PETTERSEN Kari
Page 53 Page 53 of 64
The LCASE() Function
Now we want to select the content of the "LastName" and "FirstName" columns above, and convert
the "LastName" column to lowercase.
LastName FirstName
hansen Ola
svendson Tove
pettersen Kari
Parameter Description
column_name Required. The field to extract characters from.
start Required. Specifies the starting position (starts at 1).
length Optional. The number of characters to return. If omitted, the MID() function
returns the rest of the text.
Page 54 Page 54 of 64
P_Id LastName FirstName Address City
1 Hansen Ola Timoteivn 10 Sandnes
2 Svendson Tove Borgvn 23 Sandnes
3 Pettersen Kari Storgt 20 Stavanger
Now we want to extract the first four characters of the "City" column above.
SmallCity
Sand
Sand
Stav
The LEN() function returns the length of the value in a text field.
Now we want to select the length of the values in the "Address" column above.
LengthOfAddress
12
9
9
Page 55 Page 55 of 64
The ROUND() function is used to round a numeric field to the number of decimals specified.
Parameter Description
column_name Required. The field to round.
decimals Required. Specifies the number of decimals to be returned.
Now we want to display the product name and the price rounded to the nearest integer.
ProductName UnitPrice
Jarlsberg 10
Mascarpone 33
Gorgonzola 16
The NOW() function returns the current system date and time.
Page 56 Page 56 of 64
Now we want to display the products and prices per today's date.
Parameter Description
column_name Required. The field to be formatted.
format Required. Specifies the format.
Now we want to display the products and prices per today's date (with today's date displayed in the
following format "YYYY-MM-DD").
Page 57 Page 57 of 64
Data types and ranges for Microsoft Access, MySQL and SQL Server.
In MySQL there are three main types : text, number, and Date/Time types.
Text types:
Page 58 Page 58 of 64
Note: The values are sorted in the order you enter them.
Number types:
*The integer types have an extra option called UNSIGNED. Normally, the integer goes from an
negative to positive value. Adding the UNSIGNED attribute will move that range up so it starts at
zero instead of a negative number.
Date types:
Page 59 Page 59 of 64
Note: Values allowed in four-digit format: 1901 to 2155. Values allowed in two-
digit format: 70 to 69, representing years from 1970 to 2069
*Even if DATETIME and TIMESTAMP return the same format, they work very differently. In an
INSERT or UPDATE query, the TIMESTAMP automatically set itself to the current date and time.
TIMESTAMP also accepts various formats, like YYYYMMDDHHMMSS, YYMMDDHHMMSS, YYYYMMDD,
or YYMMDD.
Character strings:
Unicode strings:
Binary types:
Number types:
Page 60 Page 60 of 64
p must be a value from 1 to 38. Default is 18.
Date types:
Page 61 Page 61 of 64
SQL Quick Reference
SQL Statement Syntax
AND / OR SELECT column_name(s)
FROM table_name
WHERE condition
AND|OR condition
ALTER TABLE ALTER TABLE table_name
ADD column_name datatype
or
or
SELECT column_name
FROM table_name AS table_alias
BETWEEN SELECT column_name(s)
FROM table_name
WHERE column_name
BETWEEN value1 AND value2
CREATE DATABASE CREATE DATABASE database_name
CREATE TABLE CREATE TABLE table_name
(
column_name1 data_type,
column_name2 data_type,
column_name2 data_type,
...
)
CREATE INDEX CREATE INDEX index_name
ON table_name (column_name)
or
or
Page 62 Page 62 of 64
ALTER TABLE table_name
DROP INDEX index_name (MySQL)
DROP TABLE DROP TABLE table_name
GROUP BY SELECT column_name, aggregate_function(column_name)
FROM table_name
WHERE column_name operator value
GROUP BY column_name
HAVING SELECT column_name, aggregate_function(column_name)
FROM table_name
WHERE column_name operator value
GROUP BY column_name
HAVING aggregate_function(column_name) operator value
IN SELECT column_name(s)
FROM table_name
WHERE column_name
IN (value1,value2,..)
INSERT INTO INSERT INTO table_name
VALUES (value1, value2, value3,....)
or
or
Page 63 Page 63 of 64
SELECT column_name(s)
INTO new_table_name [IN externaldatabase]
FROM old_table_name
SELECT TOP SELECT TOP number|percent column_name(s)
FROM table_name
TRUNCATE TABLE TRUNCATE TABLE table_name
UNION SELECT column_name(s) FROM table_name1
UNION
SELECT column_name(s) FROM table_name2
UNION ALL SELECT column_name(s) FROM table_name1
UNION ALL
SELECT column_name(s) FROM table_name2
UPDATE UPDATE table_name
SET column1=value, column2=value,...
WHERE some_column=some_value
WHERE SELECT column_name(s)
FROM table_name
WHERE column_name operator value
Page 64 Page 64 of 64