SQL Tutorial
SQL Tutorial
What is SQL?
SQL is an ANSI (American National Standards Institute) standard computer language for
accessing and manipulating database systems. SQL statements are used to retrieve and
update data in a database. SQL works with database programs like MS Access, DB2,
Informix, MS SQL Server, Oracle, Sybase, etc.
Unfortunately, there are many different versions of the SQL language, but to be in
compliance with the ANSI standard, they must support the same major keywords in a
similar manner (such as SELECT, UPDATE, DELETE, INSERT, WHERE, and others).
Note: Most of the SQL database programs also have their own proprietary extensions in
addition to the SQL standard!
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 four columns (LastName,
FirstName, Address, and City).
SQL Queries
With SQL, we can query a database and have a result set returned.
LastName
Hansen
Svendson
Pettersen
Note: Some database systems require a semicolon at the end of the SQL statement. We
don't use the semicolon in our tutorials.
SQL (Structured Query Language) is a syntax for executing queries. But the SQL language
also includes a syntax to update, insert, and delete records.
These query and update commands together form the Data Manipulation Language (DML)
part of SQL:
The Data Definition Language (DDL) part of SQL permits database tables to be created or
deleted. We can also define indexes (keys), specify links between tables, and impose
constraints between database tables.
The SELECT statement is used to select data from a table. The tabular result is stored in a
result table (called the result-set).
Syntax
SELECT column_name(s)
FROM table_name
Note: SQL statements are not case sensitive. SELECT is the same as select.
To select the content of columns named "LastName" and "FirstName", from the database
table called "Persons", use a SELECT statement like this:
The result
LastName FirstName
Hansen Ola
Svendson Tove
Pettersen Kari
To select all columns from the "Persons" table, use a * symbol instead of column names,
like this:
Result
The result from a SQL query is stored in a result-set. Most database software systems
allow navigation of the result set with programming functions, like: Move-To-First-Record,
Get-Record-Content, Move-To-Next-Record, etc.
Programming functions like these are not a part of this tutorial. To learn about accessing
data with function calls, please visit our ADO tutorial.
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.
Some SQL tutorials end each SQL statement with a semicolon. Is this necessary? 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.
The SELECT statement returns information from table columns. But what if we only want
to select distinct elements?
With SQL, all we need to do is to add a DISTINCT keyword to the SELECT statement:
Syntax
To select ALL values from the column named "Company" we use a SELECT statement like
this:
"Orders" table
Company OrderNumber
Sega 3412
W3Schools 2312
Trio 4678
W3Schools 6798
Result
Company
Sega
W3Schools
Trio
W3Schools
To select only DIFFERENT values from the column named "Company" we use a SELECT
DISTINCT statement like this:
Result:
Company
Sega
W3Schools
Trio
To conditionally select data from a table, a WHERE clause can be added to the SELECT
statement.
Syntax
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
To select only the persons living in the city "Sandnes", we add a WHERE clause to the
SELECT statement:
"Persons" table
Result
Using Quotes
Note that we have used single quotes around the conditional values in the examples.
SQL uses single quotes around text values (most database systems will also accept double
quotes). Numeric values should not be enclosed in 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'
Syntax
A "%" sign can be used to define wildcards (missing letters in the pattern) both before and
after the pattern.
Using LIKE
The following SQL statement will return persons with first names that start with an 'O':
The following SQL statement will return persons with first names that end with an 'a':
The INSERT INTO statement is used to insert new rows into a table.
Syntax
You can also specify the columns for which you want to insert data:
Syntax
UPDATE table_name
SET column_name = new_value
WHERE column_name = some_value
Person:
We want to add a first name to the person with a last name of "Rasmussen":
Result:
We want to change the address and add the name of the city:
UPDATE Person
SET Address = 'Stien 12', City = 'Stavanger'
WHERE LastName = 'Rasmussen'
Result:
Syntax
Person:
Delete a Row
Result
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:
Orders:
Company OrderNumber
Sega 3412
ABC Shop 5678
W3Schools 2312
W3Schools 6798
Example
Result:
Company OrderNumber
ABC Shop 5678
Sega 3412
W3Schools 6798
W3Schools 2312
Example
To display the companies in alphabetical order AND the ordernumbers in numerical order:
Result:
Company OrderNumber
ABC Shop 5678
Sega 3412
W3Schools 2312
W3Schools 6798
Example
Result:
Company OrderNumber
W3Schools 6798
W3Schools 2312
Sega 3412
ABC Shop 5678
Example
To display the companies in reverse alphabetical order AND the ordernumbers in numerical
order:
Result:
Company OrderNumber
W3Schools 2312
W3Schools 6798
Sega 3412
ABC Shop 5678
SQL AND & OR
AND & OR
The AND operator displays a row if ALL conditions listed are true. The OR operator displays
a row if ANY of the conditions listed are true.
Example
Use AND to display each person with the first name equal to "Tove", and the last name
equal to "Svendson":
Result:
Example
Use OR to display each person with the first name equal to "Tove", or the last name equal
to "Svendson":
Result:
Example
You can also combine AND and OR (use parentheses to form complex expressions):
Result:
IN
The IN operator may be used if you know the exact value you want to return for at least one of the
columns.
Example 1
To display the persons with LastName equal to "Hansen" or "Pettersen", use the following SQL:
Result:
The BETWEEN ... AND operator selects a range of data between two values. These values can be numbers,
text, or dates.
Example 1
To display the persons alphabetically between (and including) "Hansen" and exclusive "Pettersen", use the
following SQL:
Result:
IMPORTANT! The BETWEEN...AND operator is treated differently in different databases. With some
databases a person with the LastName of "Hansen" or "Pettersen" will not be listed (BETWEEN..AND only
selects fields that are between and excluding the test values). With some databases a person with the last
name of "Hansen" or "Pettersen" will be listed (BETWEEN..AND selects fields that are between and
including the test values). With other databases a person with the last name of "Hansen" will be listed, but
"Pettersen" will not be listed (BETWEEN..AND selects fields between the test values, including the first test
value and excluding the last test value). Therefore: Check how your database treats the BETWEEN....AND
operator!
Example 2
To display the persons outside the range used in the previous example, use the NOT operator:
Result: