SQL Tutorial

SQL Tutorial1. Get Columns from TableSELECT Syntax:1.1 Get Distinct Columns from one TableSELECT DISTINCT Syntax:2. Where Clause in TableWHERE SyntaxExample2.1. And, Or, NotExampleOperators in The WHERE Clause2.2 Is Null/ Is Not NullIS NULL SyntaxIS NOT NULL SyntaxExample2.3 LikeLIKE SyntaxExample2.4 WildcardsWildcard Characters in MS AccessWildcard Characters in SQL ServerExample2.5 In (a shorthand for multiple OR conditions)IN SyntaxExample2.6 Between AndBETWEEN SyntaxExample2.7 ExistsEXISTS SyntaxExamples3. Having Clause in TableHAVING SyntaxExample4. Order By in TableORDER BY SyntaxExample5. Insert Into-Values for TableINSERT INTO SyntaxExample6. AliasesAlias Column SyntaxAlias Table SyntaxColumns ExampleTables Example7. Update-Set for TableUPDATE SyntaxExample8. Delete from TableDELETE SyntaxExample9. Functions: Top, Min/Max, Count, Avg, Sum from Table9.1 TopSQL Server / MS Access Syntax:MySQL Syntax:Oracle 12 Syntax:Example9.2 Min/MaxMIN() SyntaxMAX() SyntaxExample9.3 COUNT, AVG, SUMCOUNT() SyntaxAVG() SyntaxSUM() SyntaxExample10. Join Two Tables10.1 Inner Join OnINNER JOIN SyntaxExample 10.2 Left Join OnLEFT JOIN SyntaxExample10.3 Right Join OnRIGHT JOIN SyntaxExample10.4 Full Outer Join OnFULL OUTER JOIN SyntaxExample12. Union (All) for Two TablesUNION SyntaxUNION ALL SyntaxExample13. Group By in TableGROUP BY SyntaxExample14. Any, All in Table14.1 AnyANY Syntax14.2 AllALL Syntax With SELECTALL Syntax With WHERE or HAVINGExample15. Select Into New Table or New DatabaseSELECT INTO SyntaxExample16. Insert Into Select for Another TableINSERT INTO SELECT SyntaxExamples17. CaseCASE SyntaxExample18. Null FunctionsSolutions19. Stored ProceduresStored Procedure SyntaxExecute a Stored ProcedureExample20. Comments20.1 Single Line CommentsExample20.2 Multi-line CommentsExample

 

1. Get Columns from Table

The SELECT statement is used to select data from a database.

The data returned is stored in a result table, called the result-set.

SELECT Syntax:

Here, column1, column2, ... are the field names of the table you want to select data from.

 

If you want to select all the fields available in the table, use the following syntax:

 

1.1 Get Distinct Columns from one Table

The SELECT DISTINCT statement is used to return only distinct (different) values.

Inside a table, a column often contains many duplicate values; and sometimes you only want to list the different (distinct) values.

SELECT DISTINCT Syntax:

 

The following SQL statement lists the number of different (distinct) customer countries:

Here is the workaround for MS Access:

 

2. Where Clause in Table

The WHERE clause is used to filter records.

It is used to extract only those records that fulfill a specified condition.

WHERE Syntax

Note: The WHERE clause is not only used in SELECT statements, it is also used in UPDATE, DELETE, etc.!

 

Example

 

2.1. And, Or, Not

AND, OR and NOT Operators

The WHERE clause can be combined with AND, OR, and NOT operators.

The AND and OR operators are used to filter records based on more than one condition:

The NOT operator displays a record if the condition(s) is NOT TRUE.

 

Example

 

Operators in The WHERE Clause

The following operators can be used in the WHERE clause:

OperatorDescription
=Equal
>Greater than
<Less than
>=Greater than or equal
<=Less than or equal
<>Not equal. Note: In some versions of SQL this operator may be written as !=
BETWEENBetween a certain range
LIKESearch for a pattern
INTo specify multiple possible values for a column

 

2.2 Is Null/ Is Not Null

A field with a NULL value is a field with no value.

If a field in a table is optional, it is possible to insert a new record or update a record without adding a value to this field. Then, the field will be saved with a NULL value.

IS NULL Syntax

IS NOT NULL Syntax

 

Example

The IS NULL operator is used to test for empty values (NULL values).

The IS NOT NULL operator is used to test for non-empty values (NOT NULL values).

 

2.3 Like

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 in conjunction with the LIKE operator:

Note: MS Access uses an asterisk (*) instead of the percent sign (%), and a question mark (?) instead of the underscore (_).

LIKE Syntax

Tip: You can also combine any number of conditions using AND or OR operators.

 

Example

 

2.4 Wildcards

Wildcard Characters:

A wildcard character is used to substitute one or more characters in a string.

Wildcard characters are used with the LIKE operator. The LIKE operator is used in a WHERE clause to search for a specified pattern in a column.

Wildcard Characters in MS Access

SymbolDescriptionExample
*Represents zero or more charactersbl* finds bl, black, blue, and blob
?Represents a single characterh?t finds hot, hat, and hit
[]Represents any single character within the bracketsh[oa]t finds hot and hat, but not hit
!Represents any character not in the bracketsh[!oa]t finds hit, but not hot and hat
-Represents any single character within the specified rangec[a-b]t finds cat and cbt
#Represents any single numeric character2#5 finds 205, 215, 225, 235, 245, 255, 265, 275, 285, and 295

 

Wildcard Characters in SQL Server

SymbolDescriptionExample
%Represents zero or more charactersbl% finds bl, black, blue, and blob
_Represents a single characterh_t finds hot, hat, and hit
[]Represents any single character within the bracketsh[oa]t finds hot and hat, but not hit
^Represents any character not in the bracketsh[^oa]t finds hit, but not hot and hat
-Represents any single character within the specified rangec[a-b]t finds cat and cbt

 

Example

Here are some examples showing different LIKE operators with '%' and '_' wildcards:

LIKE OperatorDescription
WHERE CustomerName LIKE 'a%'Finds any values that starts with "a"
WHERE CustomerName LIKE '%a'Finds any values that ends with "a"
WHERE CustomerName LIKE '%or%'Finds any values that have "or" in any position
WHERE CustomerName LIKE '_r%'Finds any values that have "r" in the second position
WHERE CustomerName LIKE 'a__%'Finds any values that starts with "a" and are at least 3 characters in length
WHERE ContactName LIKE 'a%o'Finds any values that starts with "a" and ends with "o"

 

2.5 In (a shorthand for multiple OR conditions)

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.

IN Syntax

or:

 

Example

 

2.6 Between And

BETWEEN Operator:

The BETWEEN operator selects values within a given range. The values can be numbers, text, or dates.

The BETWEEN operator is inclusive: begin and end values are included.

BETWEEN Syntax

 

Example

or:

 

2.7 Exists

EXISTS Operator:

The EXISTS operator is used to test for the existence of any record in a subquery.

The EXISTS operator returns TRUE if the subquery returns one or more records.

EXISTS Syntax

 

Examples

 

3. Having Clause in Table

HAVING Clause:

The HAVING clause was added to SQL because the WHERE keyword cannot be used with aggregate functions.

HAVING Syntax

 

Example

 

 

4. Order By in Table

ORDER BY Keyword:

The ORDER BY keyword is used to sort the result-set in ascending or descending order.

The ORDER BY keyword sorts the records in ascending order by default. To sort the records in descending order, use the DESC keyword.

ORDER BY Syntax

 

Example

 

5. Insert Into-Values for Table

INSERT INTO Statement

The INSERT INTO statement is used to insert new records in a table.

INSERT INTO Syntax

It is possible to write the INSERT INTO statement in two ways:

Example

 

6. Aliases

SQL aliases are used to give a table, or a column in a table, a temporary name.

Aliases are often used to make column names more readable.

An alias only exists for the duration of that query.

An alias is created with the AS keyword.

Alias Column Syntax

Alias Table Syntax

 

Columns Example

Note: It requires double quotation marks or square brackets if the alias name contains spaces.

Note: To get the SQL statement above to work in MySQL use the following:

Note: To get the SQL statement above to work in Oracle use the following:

Tables Example

 

7. Update-Set for Table

UPDATE Statement:

The UPDATE statement is used to modify the existing records in a table.

Note: Be careful when updating records in a table! Notice the WHERE clause in the UPDATE statement. The WHERE clause specifies which record(s) that should be updated. If you omit the WHERE clause, all records in the table will be updated!

UPDATE Syntax

 

Example

It is the WHERE clause that determines how many records will be updated.

The following SQL statement will update the ContactName to "Juan" for all records where country is "Mexico":

Note: Be careful when updating records. If you omit the WHERE clause, ALL records will be updated!

 

8. Delete from Table

DELETE Statement:

The DELETE statement is used to delete existing records in a table.

DELETE Syntax

 

Example

Note: Be careful when deleting records in a table! Notice the WHERE clause in the DELETE statement. The WHERE clause specifies which record(s) should be deleted. If you omit the WHERE clause, all records in the table will be deleted!

 

9. Functions: Top, Min/Max, Count, Avg, Sum from Table

9.1 Top

SELECT TOP Clause:

The SELECT TOP clause is used to specify the number of records to return.

The SELECT TOP clause is useful on large tables with thousands of records. Returning a large number of records can impact performance.

Note: Not all database systems support the SELECT TOP clause. MySQL supports the LIMIT clause to select a limited number of records, while Oracle uses FETCH FIRST *n* ROWS ONLY and ROWNUM.

SQL Server / MS Access Syntax:

MySQL Syntax:

Oracle 12 Syntax:

 

Example

 

9.2 Min/Max

MIN() and MAX() Functions:

The MIN() function returns the smallest value of the selected column.

The MAX() function returns the largest value of the selected column.

MIN() Syntax

MAX() Syntax

 

Example

 

9.3 COUNT, AVG, SUM

COUNT() Syntax

AVG() Syntax

SUM() Syntax

 

Example

Note: NULL values are not counted.

Note: NULL values are ignored.

Note: NULL values are ignored.

 

10. Join Two Tables

JOIN:

A JOIN clause is used to combine rows from two or more tables, based on a related column between them.

10.1 Inner Join On

INNER JOIN Keyword:

The INNER JOIN keyword selects records that have matching values in both tables.

SQL INNER JOIN

INNER JOIN Syntax

Example

Note: The INNER JOIN keyword selects all rows from both tables as long as there is a match between the columns. If there are records in the "Orders" table that do not have matches in "Customers", these orders will not be shown!

 

10.2 Left Join On

LEFT JOIN Keyword:

The LEFT JOIN keyword returns all records from the left table (table1), and the matching records from the right table (table2). The result is 0 records from the right side, if there is no match.

SQL LEFT JOIN

LEFT JOIN Syntax

Note: In some databases LEFT JOIN is called LEFT OUTER JOIN.

 

Example

 

10.3 Right Join On

RIGHT JOIN Keyword:

The RIGHT JOIN keyword returns all records from the right table (table2), and the matching records from the left table (table1). The result is 0 records from the left side, if there is no match.

SQL RIGHT JOIN

RIGHT JOIN Syntax

Note: In some databases RIGHT JOIN is called RIGHT OUTER JOIN.

 

Example

 

10.4 Full Outer Join On

FULL OUTER JOIN Keyword:

The FULL OUTER JOIN keyword returns all records when there is a match in left (table1) or right (table2) table records.

Tip: FULL OUTER JOIN and FULL JOIN are the same.

SQL FULL OUTER JOIN

FULL OUTER JOIN Syntax

Note: FULL OUTER JOIN can potentially return very large result-sets!

 

Example

A selection from the result set may look like this:

CustomerNameOrderID
Null10309
Null10310
Alfreds FutterkisteNull
Ana Trujillo Emparedados y helados10308
Antonio Moreno TaqueríaNull

Note: The FULL OUTER JOIN keyword returns all matching records from both tables whether the other table matches or not. So, if there are rows in "Customers" that do not have matches in "Orders", or if there are rows in "Orders" that do not have matches in "Customers", those rows will be listed as well.

 

12. Union (All) for Two Tables

UNION Operator:

The UNION operator is used to combine the result-set of two or more SELECT statements.

UNION Syntax

UNION ALL Syntax

The UNION operator selects only distinct values by default. To allow duplicate values, use UNION ALL:

Note: The column names in the result-set are usually equal to the column names in the first SELECT statement.

 

Example

Note: If some customers or suppliers have the same city, each city will only be listed once, because UNION selects only distinct values. Use UNION ALL to also select duplicate values!

Notice the "AS Type" above - it is an alias. SQL Aliases are used to give a table or a column a temporary name. An alias only exists for the duration of the query. So, here we have created a temporary column named "Type", that list whether the contact person is a "Customer" or a "Supplier".

 

13. Group By in Table

GROUP BY Statement:

The GROUP BY statement groups rows that have the same values into summary rows, like "find the number of customers in each country".

The GROUP BY statement is often used with aggregate functions (COUNT(), MAX(), MIN(), SUM(), AVG()) to group the result-set by one or more columns.

GROUP BY Syntax

 

Example

 

14. Any, All in Table

ANY and ALL Operators:

The ANY and ALL operators allow you to perform a comparison between a single column value and a range of other values.

14.1 Any

The ANY operator:

ANY means that the condition will be true if the operation is true for any of the values in the range.

ANY Syntax

Note: The operator must be a standard comparison operator (=, <>, !=, >, >=, <, or <=).

 

14.2 All

The ALL operator:

ALL means that the condition will be true only if the operation is true for all values in the range.

ALL Syntax With SELECT

ALL Syntax With WHERE or HAVING

Note: The operator must be a standard comparison operator (=, <>, !=, >, >=, <, or <=).

 

Example

 

15. Select Into New Table or New Database

SELECT INTO Statement:

The SELECT INTO statement copies data from one table into a new table.

SELECT INTO Syntax

Copy all columns into a new table:

Copy only some columns into a new table:

 

Example

Tip: SELECT INTO can also be used to create a new, empty table using the schema of another. Just add a WHERE clause that causes the query to return no data:

 

16. Insert Into Select for Another Table

INSERT INTO SELECT Statement:

The INSERT INTO SELECT statement copies data from one table and inserts it into another table.

The INSERT INTO SELECT statement requires that the data types in source and target tables match.

Note: The existing records in the target table are unaffected.

INSERT INTO SELECT Syntax

Copy all columns from one table to another table:

Copy only some columns from one table into another table:

 

Examples

 

17. Case

CASE Expression:

The CASE expression goes through conditions and returns a value when the first condition is met (like an if-then-else statement). So, once a condition is true, it will stop reading and return the result. If no conditions are true, it returns the value in the ELSE clause.

If there is no ELSE part and no conditions are true, it returns NULL.

CASE Syntax

 

Example

 

18. Null Functions

IFNULL(), ISNULL(), COALESCE(), and NVL() Functions:

Look at the following "Products" table:

P_IdProductNameUnitPriceUnitsInStockUnitsOnOrder
1Jarlsberg10.451615
2Mascarpone32.5623
3Gorgonzola15.67920

Suppose that the "UnitsOnOrder" column is optional, and may contain NULL values.

Look at the following SELECT statement:

In the example above, if any of the "UnitsOnOrder" values are NULL, the result will be NULL.

Solutions

MySQL

The MySQL IFNULL() function lets you return an alternative value if an expression is NULL:

or we can use the COALESCE() function, like this:

SQL Server

The SQL Server ISNULL() function lets you return an alternative value when an expression is NULL:

or we can use the COALESCE() function, like this:

MS Access

The MS Access IsNull() function returns TRUE (-1) if the expression is a null value, otherwise FALSE (0):

Oracle

The Oracle NVL() function achieves the same result:

or we can use the COALESCE() function, like this:

 

19. Stored Procedures

Stored Procedure:

A stored procedure is a prepared SQL code that you can save, so the code can be reused over and over again.

So if you have an SQL query that you write over and over again, save it as a stored procedure, and then just call it to execute it.

You can also pass parameters to a stored procedure, so that the stored procedure can act based on the parameter value(s) that is passed.

Stored Procedure Syntax

Execute a Stored Procedure

 

Example

Execute the stored procedure above as follows:

Execute the stored procedure above as follows:

Execute the stored procedure above as follows:

 

20. Comments

Comments:

Comments are used to explain sections of SQL statements, or to prevent execution of SQL statements.

20.1 Single Line Comments

Single line comments start with --.

Any text between -- and the end of the line will be ignored (will not be executed).

Example

 

20.2 Multi-line Comments

Multi-line comments start with /* and end with */.

Any text between /* and */ will be ignored.

 

Example