SQL Basic SQL Home SQL Intro SQL Syntax SQL Select SQL Distinct SQL Where SQL and & or SQL Order by SQL Insert SQL Update SQL Delete
SQL Basic SQL Home SQL Intro SQL Syntax SQL Select SQL Distinct SQL Where SQL and & or SQL Order by SQL Insert SQL Update SQL Delete
SQL HOME
SQL Intro
SQL Syntax
SQL Select
SQL Distinct
SQL Where
SQL And & Or
SQL Order By
SQL Insert
SQL Update
SQL Delete
Introduction to SQL
SQL is a standard language for accessing and manipulating databases.
What is SQL?
• SQL stands for Structured Query Language
• SQL lets you access and manipulate databases
• SQL is an ANSI (American National Standards Institute) standard
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 stands for Relational Database Management System.
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.
SQL Syntax
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.
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.
The query and update commands form the DML part of SQL:
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:
and
Now we want to select the content of the columns named "LastName" and "FirstName"
from the table above.
LastName FirstName
Hansen Ola
Svendson Tove
Pettersen Kari
SELECT * Example
Now we want to select all the columns from the "Persons" table.
Navigation in a Result-set
Most database software systems allow navigation in 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 or our PHP tutorial.
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
Now we want to select only the persons living in the city "Sandnes" from the table above.
This is correct:
SELECT * FROM Persons WHERE FirstName='Tove'
This is wrong:
This is correct:
This is wrong:
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 & OR Operators
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
Now we want to select only the persons with the first name equal to "Tove" OR the first
name equal to "Ola":
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.
SQL ORDER BY Syntax
SELECT column_name(s)
FROM table_name
ORDER BY column_name(s) ASC|DESC
ORDER BY Example
The "Persons" table:
Now we want to select all the persons from the table above, however, we want to sort the
persons by their last name.
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:
The following SQL statement will add a new row, but only add data in the "P_Id",
"LastName" and the "FirstName" columns:
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!
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'
UPDATE Persons
SET Address='Nissestien 67', City='Sandnes'
Now we want to delete the person "Tjessem, Jakob" in the "Persons" table.
or
SQL Try It
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).