Northwind is a sample database used by Microsoft to demonstrate features of its products. The Northwind database contains the sales data for a fictitious specialty foods export-import company. In this lesson, we will explore some of these tables.
Northwind is a sample database used by Microsoft to demonstrate features of its products. The Northwind database contains the sales data for a fictitious specialty foods export-import company. In this lesson, we will explore some of these tables.
Northwind is a sample database used by Microsoft to demonstrate features of its products. The Northwind database contains the sales data for a fictitious specialty foods export-import company. In this lesson, we will explore some of these tables.
Northwind is a sample database used by Microsoft to demonstrate features of its products. The Northwind database contains the sales data for a fictitious specialty foods export-import company. In this lesson, we will explore some of these tables.
The Northwind database is a sample database used by Microsoft to demonstrate the
features of some of its products, including SQL Server and Microsoft Access. The database contains the sales data for Northwind Traders, a fictitious specialty foods export-import company. Although the code taught in this class is not specific to Microsoft products, we use the Northwind database for many of our examples because many people are already familiar with it and because there are many resources for related learning that make use of the same database. The diagram below shows the table structure of the Northwind database.
The Northwind database has additional tables, but we will only be using the ones shown above. In this lesson, we will explore some of these tables. Some Basics Comments The standard SQL comment is two hyphens (--). However, some databases use other forms of comments as shown in the table below. SQL Comments
-- # /* */ Example -- Comment # Comment /* Comment */ ANSI YES NO NO SQL Server YES NO YES Oracle YES NO YES MySQL YES YES YES The code sample below shows some sample comments. Code Sample: SimpleSelects/Demos/Comments.sql 1 2 3 4 5 6 7 -- Single-line comment /* Multi-line comment used in: -SQL Server -Oracle -MySQL */ Whitespace and Semi-colons Whitespace is ignored in SQL statements. Multiple statements are separated with semi- colons. The two statements in the sample below are equally valid. Code Sample: SimpleSelects/Demos/WhiteSpace.sql 1 2 3 4 SELECT * FROM Employees;
SELECT * FROM Employees; Case Sensitivity SQL is not case sensitive. It is common practice to write reserved words in all capital letters. User-defined names, such as table names and column names may or may not be case sensitive depending on the operating system used. SELECTing All Columns in All Rows The following syntax is used to retrieve all columns in all rows of a table. Syntax 1 2 3 4 5 6 7 SELECT table.* FROM table;
-- OR
SELECT * FROM table; Code Sample: SimpleSelects/Demos/SelectAll.sql 1 2 3 --Retrieve all columns in the Region table SELECT * FROM Region; The above SELECT statement will return the following results:
As you can see, the Region table has only two columns, RegionID and RegionDescription, and four rows. Like this SQL tutorial? Try our self-paced online SQL course, which includes videos and exercises in addition to the content in this SQL tutorial. Not sure if you want to pay for that? Register for a free demo of the course. SELECTing Specific Columns The following syntax is used to retrieve specific columns in all rows of a table. Syntax 1 2 3 4 5 6 7 SELECT table_name.column_name, table_name.column_name FROM table;
-- OR
SELECT column, column FROM table; Code Sample: SimpleSelects/Demos/SelectCols.sql 1 2 3 4 5 /* Select the FirstName and LastName columns from the Employees table. */ SELECT FirstName, LastName FROM Employees; The above SELECT statement will return the following results:
Like this SQL tutorial? Try our self-paced online SQL course, which includes videos and exercises in addition to the content in this SQL tutorial. Not sure if you want to pay for that? Register for a free demo of the course. Sorting Records The ORDER BY clause of the SELECT statement is used to sort records. Sorting By a Single Column To sort by a single column, simply name that column in the ORDER BY clause. Syntax 1 2 3 SELECT column, column FROM table ORDER BY column; Note that columns in the ORDER BY clause do not have to appear in the SELECT clause. Code Sample: SimpleSelects/Demos/OrderBy1.sql 1 2 3 /* Select the FirstName and LastName columns from the Employees table. Sort by LastName. */ 4 5 6 7 8
SELECT FirstName, LastName FROM Employees ORDER BY LastName; The above SELECT statement will return the following results:
Sorting By Multiple Columns To sort by multiple columns, comma-delimit the column names in the ORDER BY clause. Syntax 1 2 3 SELECT column, column FROM table ORDER BY column, column; Code Sample: SimpleSelects/Demos/OrderBy2.sql 1 2 3 4 5 6 7 8 /* Select the Title, FirstName and LastName columns from the Employees table. Sort first by Title and then by LastName. */
SELECT Title, FirstName, LastName FROM Employees ORDER BY Title, LastName; The above SELECT statement will return the following results:
Sorting By Column Position It is also possible to sort tables by the position of a column in the SELECT list. To do so, specify the column numbers in the ORDER BY clause. Syntax 1 2 3 SELECT column, column FROM table ORDER BY column_position, column_position; Code Sample: SimpleSelects/Demos/OrderBy3.sql 1 2 3 4 5 6 7 8 /* Select the Title, FirstName and LastName columns from the Employees table. Sort first by Title (position 1) and then by LastName (position 3). */
SELECT Title, FirstName, LastName FROM Employees ORDER BY 1,3; The above SELECT statement will return the same results as the previous query:
Ascending and Descending Sorts By default, when an ORDER BY clause is used, records are sorted in ascending order. This can be explicitly specified with the ASC keyword. To sort records in descending order, use the DESC keyword. Syntax 1 2 3 SELECT column, column FROM table ORDER BY column_position DESC, column_position ASC; Code Sample: SimpleSelects/Demos/OrderBy4.sql 1 2 3 4 5 6 7 8 9 /* Select the Title, FirstName and LastName columns from the Employees table. Sort first by Title in ascending order and then by LastName in descending order. */
SELECT Title, FirstName, LastName FROM Employees ORDER BY Title ASC, LastName DESC; The above SELECT statement will return the following results:
Like this SQL tutorial? Try our self-paced online SQL course, which includes videos and exercises in addition to the content in this SQL tutorial. Not sure if you want to pay for that? Register for a free demo of the course. The WHERE Clause and Operator Symbols The WHERE clause is used to retrieve specific rows from tables. The WHERE clause can contain one or more conditions that specify which rows should be returned. Syntax 1 2 3 SELECT column, column FROM table WHERE conditions; The following table shows the symbolic operators used in WHERE conditions. SQL Symbol Operators Operator Description = Equals <> Not Equal > Greater Than < Less Than >= Greater Than or Equal To <= Less Than or Equal To Note that non-numeric values (e.g, dates and strings) in the WHERE clause must be enclosed in single quotes. Examples are shown below. Checking for Equality Code Sample: SimpleSelects/Demos/Where-Equal.sql 1 2 3 4 5 6 7 8 /* Create a report showing the title and the first and last name of all sales representatives. */
SELECT Title, FirstName, LastName FROM Employees WHERE Title = 'Sales Representative'; The above SELECT statement will return the following results:
Checking for Inequality Code Sample: SimpleSelects/Demos/Where-NotEqual.sql 1 2 3 4 5 6 7 8 /* Create a report showing the first and last name of all employees excluding sales representatives. */
SELECT FirstName, LastName FROM Employees WHERE Title <> 'Sales Representative'; The above SELECT statement will return the following results:
Checking for Greater or Less Than The less than (<) and greater than (>) signs are used to compare numbers, dates, and strings. Code Sample: SimpleSelects/Demos/Where-GreaterThanOrEqual.sql 1 2 3 4 5 6 7 8 /* Create a report showing the first and last name of all employees whose last names start with a letter in the last half of the alphabet. */
SELECT FirstName, LastName FROM Employees WHERE LastName >= 'N'; The above SELECT statement will return the following results:
Checking for NULL When a field in a row has no value, it is said to be NULL. This is not the same as having an empty string. Rather, it means that the field contains no value at all. When checking to see if a field is NULL, you cannot use the equals sign (=); rather, use the IS NULL expression. Code Sample: SimpleSelects/Demos/Where-Null.sql 1 2 3 4 5 6 7 8 /* Create a report showing the first and last names of all employees whose region is unspecified. */
SELECT FirstName, LastName FROM Employees WHERE Region IS NULL; The above SELECT statement will return the following results:
Code Sample: SimpleSelects/Demos/Where-NotNull.sql 1 2 3 4 5 6 7 8 /* Create a report showing the first and last names of all employees who have a region specified. */
SELECT FirstName, LastName FROM Employees WHERE Region IS NOT NULL; The above SELECT statement will return the following results:
WHERE and ORDER BY When using WHERE and ORDER BY together, the WHERE clause must come before the ORDER BY clause. Code Sample: SimpleSelects/Demos/Where-OrderBy.sql 1 2 3 4 5 6 7 8 9 10 /* Create a report showing the first and last name of all employees whose last names start with a letter in the last half of the alphabet. Sort by LastName in descending order. */
SELECT FirstName, LastName FROM Employees WHERE LastName >= 'N' ORDER BY LastName DESC; The above SELECT statement will return the following results:
Like this SQL tutorial? Try our self-paced online SQL course, which includes videos and exercises in addition to the content in this SQL tutorial. Not sure if you want to pay for that? Register for a free demo of the course. The WHERE Clause and Operator Words The following table shows the word operators used in WHERE conditions. SQL Word Operators Operator Description BETWEEN Returns values in an inclusive range IN Returns values in a specified subset LIKE Returns values that match a simple pattern NOT Negates an operation The BETWEEN Operator The BETWEEN operator is used to check if field values are within a specified inclusive range. Code Sample: SimpleSelects/Demos/Where-Between.sql 1 2 3 4 5 6 7 8 9 10 11 12 13 14 /* Create a report showing the first and last name of all employees whose last names start with a letter between "J" and "M". */
SELECT FirstName, LastName FROM Employees WHERE LastName BETWEEN 'J' AND 'M';
-- The above SELECT statement is the same as the one below.
SELECT FirstName, LastName FROM Employees WHERE LastName >= 'J' AND LastName <= 'M'; The above SELECT statements will both return the following results:
Note that a person with the last name "M" would be included in this report. The IN Operator The IN operator is used to check if field values are included in a specified comma- delimited list. Code Sample: SimpleSelects/Demos/Where-In.sql 1 2 3 4 5 6 7 8 9 10 11 12 13 14 /* Create a report showing the title of courtesy and the first and last name of all employees whose title of courtesy is "Mrs." or "Ms.". */
SELECT TitleOfCourtesy, FirstName, LastName FROM Employees WHERE TitleOfCourtesy IN ('Ms.','Mrs.');
-- The above SELECT statement is the same as the one below
SELECT TitleOfCourtesy, FirstName, LastName FROM Employees WHERE TitleOfCourtesy = 'Ms.' OR TitleOfCourtesy = 'Mrs.'; The above SELECT statements will both return the following results:
The LIKE Operator The LIKE operator is used to check if field values match a specified pattern. The Percent Sign (%) The percent sign (%) is used to match any zero or more characters. Code Sample: SimpleSelects/Demos/Where-Like1.sql 1 2 3 4 /* Create a report showing the title of courtesy and the first and last name of all employees whose title of courtesy begins with "M". */
5 6 7 8 SELECT TitleOfCourtesy, FirstName, LastName FROM Employees WHERE TitleOfCourtesy LIKE 'M%'; The above SELECT statement will return the following results:
The Underscore (_) The underscore (_) is used to match any single character. Code Sample: SimpleSelects/Demos/Where-Like2.sql 1 2 3 4 5 6 7 8 9 /* Create a report showing the title of courtesy and the first and last name of all employees whose title of courtesy begins with "M" and is followed by any character and a period (.). */
SELECT TitleOfCourtesy, FirstName, LastName FROM Employees WHERE TitleOfCourtesy LIKE 'M_.'; The above SELECT statement will return the following results:
Wildcards and Performance Using wildcards can slow down performance, especially if they are used at the beginning of a pattern. You should use them sparingly. The NOT Operator The NOT operator is used to negate an operation. Code Sample: SimpleSelects/Demos/Where-Not.sql 1 2 3 4 5 6 7 8 /* Create a report showing the title of courtesy and the first and last name of all employees whose title of courtesy is not "Ms." or "Mrs.". */
SELECT TitleOfCourtesy, FirstName, LastName FROM Employees WHERE NOT TitleOfCourtesy IN ('Ms.','Mrs.'); The above SELECT statement will return the following results:
Like this SQL tutorial? Try our self-paced online SQL courses, which includes videos and exercises in addition to the content in this SQL tutorial. Not sure if you want to pay for that? Register for a free demo of the course. Checking Multiple Conditions AND AND can be used in a WHERE clause to find records that match more than one condition. Code Sample: SimpleSelects/Demos/Where-And.sql 1 2 3 4 5 6 /* Create a report showing the first and last name of all sales representatives whose title of courtesy is "Mr.". */
SELECT FirstName, LastName FROM Employees WHERE Title = 'Sales Representative' 7 8 9 AND TitleOfCourtesy = 'Mr.'; The above SELECT statement will return the following results:
OR OR can be used in a WHERE clause to find records that match at least one of several conditions. Code Sample: SimpleSelects/Demos/Where-Or.sql 1 2 3 4 5 6 7 8 /* Create a report showing the first and last name and the city of all employees who are from Seattle or Redmond. */
SELECT FirstName, LastName, City FROM Employees WHERE City = 'Seattle' OR City = 'Redmond'; The above SELECT statement will return the following results:
Order of Evaluation By default, SQL processes AND operators before it processes OR operators. To illustrate how this works, take a look at the following example. Code Sample: SimpleSelects/Demos/Where-AndOrPrecedence.sql 1 2 3 4 5 6 /* Create a report showing the first and last name of all sales representatives who are from Seattle or Redmond. */
SELECT FirstName, LastName, City, Title FROM Employees 7 8 9 WHERE City = 'Seattle' OR City = 'Redmond' AND Title = 'Sales Representative'; The above SELECT statement will return the following results:
Notice that Laura Callahan is returned by the query even though she is not a sales representative. This is because this query is looking for employees from Seattle OR sales representatives from Redmond. This can be fixed by putting the OR portion of the clause in parentheses. Code Sample: SimpleSelects/Demos/Where-AndOrPrecedence2.sql 1 2 3 4 5 6 7 8 9 /* Create a report showing the first and last name of all sales representatives who are from Seattle or Redmond. */
SELECT FirstName, LastName, City, Title FROM Employees WHERE (City = 'Seattle' OR City = 'Redmond') AND Title = 'Sales Representative'; The parentheses specify that the OR portion of the clause should be evaluated first, so the above SELECT statement will return the same results minus Laura Callahan.
If only to make the code more readable, it's a good idea to use parentheses whenever the order of precedence might appear ambiguous. Advanced SELECTs In this lesson you will learn to write advanced select statements using SQL functions and grouping. Lesson Goals To use SELECT statements to retrieve calculated values. To work with aggregate functions and grouping. To work with SQL's data manipulation functions. Lesson Activities 1. Calculated Fields 2. Aggregate Functions and Grouping 3. Built-in Data Manipulation Functions
Calculated Fields Calculated fields are fields that do not exist in a table, but are created in the SELECT statement. For example, you might want to create FullName from FirstName and LastName. Concatenation Concatenation is a fancy word for stringing together different words or characters. SQL Server, Oracle and MySQL each has its own way of handling concatenation. All three of the code samples below will return the following results:
In SQL Server, the plus sign (+) is used as the concatenation operator. Code Sample: AdvancedSelects/Demos/Concatenate-SqlServer.sql 1 2 3 4 -- Select the full name of all employees. SQL SERVER.
SELECT FirstName + ' ' + LastName FROM Employees; In Oracle, the double pipe (||) is used as the concatenation operator. Code Sample: AdvancedSelects/Demos/Concatenate-Oracle.sql 1 2 3 4 -- Select the full name of all employees. Oracle.
SELECT FirstName || ' ' || LastName FROM Employees; MySQL does this in yet another way. There is no concatenation operator. Instead, MySQL uses the CONCAT() function . Code Sample: AdvancedSelects/Demos/Concatenate-MySQL.sql 1 2 3 -- Select the full name of all employees. MySQL. SELECT CONCAT(FirstName, ' ', LastName) FROM Employees; Note that concatenation only works with strings. To concatenate other data types, you must first convert them to strings. Mathematical Calculations Mathematical calculations in SQL are similar to those in other languages. Mathematical Operators Operator Description + Addition - Subtraction * Multiplication / Division Mathematical Operators Operator Description % Modulus Code Sample: AdvancedSelects/Demos/MathCalc.sql 1 2 3 4 5 6 7 8 9 10 /* If the cost of freight is greater than or equal to $500.00, it will now be taxed by 10%. Create a report that shows the order id, freight cost, freight cost with this tax for all orders of $500 or more. */
SELECT OrderID, Freight, Freight * 1.1 FROM Orders WHERE Freight >= 500; The above SELECT statement will return the following results:
Aliases You will notice in the examples above that the calculated columns have the header "(No column name)". The keyword AS is used to provide a named header for the column. Code Sample: AdvancedSelects/Demos/Alias.sql 1 2 3 SELECT OrderID, Freight, Freight * 1.1 AS FreightTotal FROM Orders WHERE Freight >= 500; As you can see, the third column now has the title "FreightTotal". Like this SQL tutorial? Try our self-paced online SQL courses, which includes videos and exercises in addition to the content in this SQL tutorial. Not sure if you want to pay for that? Register for a free demo of the course. Aggregate Functions and Grouping Aggregate Functions Aggregate functions are used to calculate results using field values from multiple records. There are five common aggregate functions. Common Aggregate Functions Aggregate Function Description COUNT() Returns the number of rows containing non-NULL values in the specified field. SUM() Returns the sum of the non-NULL values in the specified field. AVG() Returns the average of the non-NULL values in the specified field. MAX() Returns the maximum of the non-NULL values in the specified field. MIN() Returns the minimum of the non-NULL values in the specified field. Code Sample: AdvancedSelects/Demos/Aggregate-Count.sql 1 2 3 4 -- Find the Number of Employees
SELECT COUNT(*) AS NumEmployees FROM Employees; Returns 9. Code Sample: AdvancedSelects/Demos/Aggregate-Sum.sql 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 -- Find the Total Number of Units Ordered of Product ID 3
/****************************** SQL Server ******************************/ SELECT SUM(Quantity) AS TotalUnits FROM "Order Details" WHERE ProductID=3;
/****************************** Oracle and MySQL ******************************/ SELECT SUM(Quantity) AS TotalUnits FROM Order_Details WHERE ProductID=3; Returns 328. Code Sample: AdvancedSelects/Demos/Aggregate-Avg.sql 1 2 3 4 -- Find the Average Unit Price of Products
SELECT AVG(UnitPrice) AS AveragePrice FROM Products; Returns 28.8663. Code Sample: AdvancedSelects/Demos/Aggregate-MinMax.sql 1 2 3 4 5 -- Find the Earliest and Latest Dates of Hire
SELECT MIN(HireDate) AS FirstHireDate, MAX(HireDate) AS LastHireDate FROM Employees; The above SELECT statement will return April 1, 1992 and November 15, 1994 as the FirstHireDate and LastHireDate, respectively. The date format will vary from database to database.
Grouping Data GROUP BY With the GROUP BY clause, aggregate functions can be applied to groups of records based on column values. For example, the following code will return the number of employees in each city. Code Sample: AdvancedSelects/Demos/Aggregate-GroupBy.sql 1 2 --Retrieve the number of employees in each city
3 4 5 SELECT City, COUNT(EmployeeID) AS NumEmployees FROM Employees GROUP BY City; The above SELECT statement will return the following results:
HAVING The HAVING clause is used to filter grouped data. For example, the following code specifies that we only want information on cities that have more than one employee. Code Sample: AdvancedSelects/Demos/Aggregate-Having.sql 1 2 3 4 5 6 7 8 9 /* Retrieve the number of employees in each city in which there are at least 2 employees. */
SELECT City, COUNT(EmployeeID) AS NumEmployees FROM Employees GROUP BY City HAVING COUNT(EmployeeID) > 1; The above SELECT statement will return the following results:
Order of Clauses 1. SELECT 2. FROM 3. WHERE 4. GROUP BY 5. HAVING 6. ORDER BY Code Sample: AdvancedSelects/Demos/Aggregate-OrderOfClauses.sql 1 2 3 4 5 6 7 8 9 10 11 /* Find the number of sales representatives in each city that contains at least 2 sales representatives. Order by the number of employees. */
SELECT City, COUNT(EmployeeID) AS NumEmployees FROM Employees WHERE Title = 'Sales Representative' GROUP BY City HAVING COUNT(EmployeeID) > 1 ORDER BY NumEmployees; The above SELECT statement will return the following results:
Grouping Rules Every non-aggregate column that appears in the SELECT clause must also appear in the GROUP BY clause. You may not use aliases in the HAVING clause. You may use aliases in the ORDER BY clause. You may only use calculated fields in the HAVING clause. You may use calculated field aliases or actual fields in the ORDER BY clause. Selecting Distinct Records The DISTINCT keyword is used to select distinct combinations of column values from a table. For example, the following example shows how you would find all the distinct cities in which Northwind has employees. Code Sample: AdvancedSelects/Demos/Distinct.sql 1 2 3 4 5 6 7 /* Find all the distinct cities in which Northwind has employees. */
SELECT DISTINCT City FROM Employees ORDER BY City DISTINCT is often used with aggregate functions. The following example shows how DISTINCT can be used to find out in how many different cities Northwind has employees. Code Sample: AdvancedSelects/Demos/Distinct-Count.sql 1 2 3 4 5 6 /* Find out in how many different cities Northwind has employees. */
SELECT COUNT(DISTINCT City) AS NumCities FROM Employees Like this SQL tutorial? Try our self-paced online SQL courses, which includes videos and exercises in addition to the content in this SQL tutorial. Not sure if you want to pay for that? Register for a free demo of the course. Built-in Data Manipulation Functions In this section, we will discuss some of the more common built-in data manipulation functions. Unfortunately, the functions differ greatly between databases, so you should be sure to check your database documentation when using these functions. The tables below show some of the more common math, string, and date functions. Common Math Functions Common Math Functions Description SQL Server Oracle MySQL Absolute value ABS ABS ABS Smallest integer >= value CEILING CEIL CEILING Round down to nearest integer FLOOR FLOOR FLOOR Power POWER POWER POWER Round ROUND ROUND ROUND Square root SQRT SQRT SQRT Formatting numbers to two decimal places CAST(num AS decimal(8,2)) CAST(num AS decimal(8,2)) FORMAT(num,2) or CAST(num AS decimal(8,2)) Code Sample: AdvancedSelects/Demos/Functions-Math1.sql 1 2 3 4 5 6 7 /* Select freight as is and freight rounded to the first decimal (e.g, 1.150 becomes 1.200) from the Orders tables */
SELECT Freight, ROUND(Freight,1) AS ApproxFreight FROM Orders; 8 The above SELECT statement will return the following results (not all rows shown):
Code Sample: AdvancedSelects/Demos/Functions-Math2.sql 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 /* Select the unit price as is and unit price as a CHAR(10) from the Products tables */ SELECT UnitPrice, CAST(UnitPrice AS CHAR(10)) FROM Products;
/****************************** ADD CONCATENATION ******************************/ /****************************** SQL Server ******************************/ SELECT UnitPrice, '$' + CAST(UnitPrice AS CHAR(10)) FROM Products;
/****************************** MySQL ******************************/ SELECT UnitPrice, CONCAT('$',CAST(UnitPrice AS CHAR(10))) FROM Products; The above SELECT statement will return the following results (not all rows shown):
Note that the CHAR(10) creates space for 10 characters and if the unit price required more than 10 characters you would need to increase it accordingly. Common String Functions Common String Functions Description SQL Server Oracle MySQL Convert characters to lowercase LOWER LOWER LOWER Convert characters to uppercase UPPER UPPER UPPER Remove trailing blank spaces RTRIM RTRIM RTRIM Remove leading blank spaces LTRIM LTRIM LTRIM Substring SUBSTRING SUBSTR SUBSTRING Code Sample: AdvancedSelects/Demos/Functions-String1.sql 1 2 3 4 5 /* Select first and last name from employees in all uppercase letters */ SELECT UPPER(FirstName), UPPER(LastName) FROM Employees; The above SELECT statement will return the following results:
Code Sample: AdvancedSelects/Demos/Functions-String2.sql 1 2 3 4 5 6 7 8 9 10 11 12 13 -- Select the first 10 characters of each customer's address
/****************************** SQL Server and MySQL ******************************/ SELECT SUBSTRING(Address,1,10) FROM Customers;
/****************************** Oracle ******************************/ SELECT SUBSTR(Address,1,10) FROM Customers; The above SELECT statement will return the following results (not all rows shown):
Common Date Functions Common Date Functions Description SQL Server Oracle MySQL Common Date Functions Description SQL Server Oracle MySQL Date addition DATEADD (use +) DATE_ADD Date subtraction DATEDIFF (use -) DATEDIFF Convert date to string DATENAME TO_CHAR DATE_FORMAT Convert date to number DATEPART TO_NUMBER(TO_CHAR) EXTRACT Get current date and time GETDATE SYSDATE NOW Code Sample: AdvancedSelects/Demos/Functions-Date1.sql 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 -- Find the hiring age of each employee
/****************************** SQL Server ******************************/ SELECT LastName, BirthDate, HireDate, DATEDIFF(year,BirthDate,HireDate) AS HireAge FROM Employees ORDER BY HireAge;
/****************************** Oracle ******************************/ SELECT LastName, BirthDate, HireDate, FLOOR((HireDate - BirthDate)/365.25) AS HireAge FROM Employees ORDER BY HireAge;
17 18 19 20 21 22 23 24 25 26 27 28 29 /****************************** MySQL ******************************/ -- Find the hiring age of each employee -- in versions of MySQL prior to 4.1.1 SELECT LastName, BirthDate, HireDate, YEAR(HireDate)-YEAR(BirthDate) AS HireAge FROM Employees;
-- In MySQL 4.1.1 and later, DATEDIFF() returns the number of days between -- two dates. You can then divide and floor to get age. SELECT LastName, BirthDate, HireDate, FLOOR(DATEDIFF(HireDate,BirthDate)/365) AS HireAge FROM Employees ORDER BY HireAge; The above SELECT statement will return the following results in SQL Server:
And like this in Oracle: Note for SQL Server users: SQL Server is subtracting the year the employee was born from the year (s)he was hired. This does not give us an accurate age. We'll fix this in an upcoming exercise. Code Sample: AdvancedSelects/Demos/Functions-Date2.sql 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 -- Find the Birth month for every employee
/****************************** SQL Server ******************************/ SELECT FirstName, LastName, DATENAME(month,BirthDate) AS BirthMonth FROM Employees ORDER BY DATEPART(month,BirthDate);
/****************************** Oracle ******************************/ SELECT FirstName, LastName, TO_CHAR(BirthDate,'MONTH') AS BirthMonth FROM Employees ORDER BY TO_NUMBER(TO_CHAR(BirthDate,'MM'));
/****************************** MySQL ******************************/ SELECT FirstName, LastName, DATE_FORMAT(BirthDate, '%M') AS BirthMonth FROM Employees ORDER BY EXTRACT(MONTH FROM BirthDate); The above SELECT statement will return the following results:
Subqueries, Joins and Unions Often the data you need will be stored in multiple tables. In this lesson, you'll learn to create reports from two or more tables based on data in one of those tables or even in a separate table altogether. Lesson Goals To write queries with subqueries. To select columns from multiple tables with joins. To select records from multiple tables with unions. Lesson Activities 1. Subqueries 2. Joins 3. Outer Joins 4. Unions
Subqueries Subqueries are queries embedded in queries. They are used to retrieve data from one table based on data in another table. They generally are used when tables have some kind of relationship. For example, in the Northwind database, the Orders table has a CustomerID field, which references a customer in the Customers table. Retrieving the CustomerID for a specific order is pretty straightforward. Code Sample: SubqueriesJoinsUnions/Demos/Subquery-SelectCustomerID.sql 1 /* 2 3 4 5 6 7 Find the CustomerID of the company that placed order 10290. */
SELECT CustomerID FROM Orders WHERE OrderID = 10290; This will return COMMI, which is very likely meaningless to the people reading the report. The next query uses a subquery to return a meaningful result. Code Sample: SubqueriesJoinsUnions/Demos/Subquery-SelectCompanyName.sql 1 2 3 4 5 6 7 -- Find the name of the company that placed order 10290.
SELECT CompanyName FROM Customers WHERE CustomerID = (SELECT CustomerID FROM Orders WHERE OrderID = 10290); The above code returns Comrcio Mineiro, which is a lot more useful than COMMI. The subquery can contain any valid SELECT statement, but it must return a single column with the expected number of results. For example, if the subquery returns only one result, then the main query can check for equality, inequality, greater than, less than, etc. On the other hand, if the subquery returns more than one record, the main query must check to see if a field value is (or is NOT) IN the set of values returned. Code Sample: SubqueriesJoinsUnions/Demos/Subquery-IN.sql 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 -- Find the Companies that placed orders in 1997
/****************************** Both of the queries below will work in SQL Server
Oracle ******************************/ SELECT CompanyName FROM Customers WHERE CustomerID IN (SELECT CustomerID FROM Orders WHERE OrderDate BETWEEN '1-Jan-1997' AND '31-Dec-1997');
/****************************** MySQL ******************************/ SELECT CompanyName FROM Customers WHERE CustomerID IN (SELECT CustomerID FROM Orders 18 19 20 21 WHERE OrderDate BETWEEN '1997-01-01' AND '1997-12-31'); The above SELECT statement will return the following results:
Like this SQL tutorial? Try our self-paced online SQL courses, which includes videos and exercises in addition to the content in this SQL tutorial. Not sure if you want to pay for that? Register for a free demo of the course. Joins How can we find out Which products are provided by which suppliers? Which customers placed which orders? Which customers are buying which products? Such reports require data from multiple tables. Enter joins. Syntax 1 2 3 4 SELECT table1.column, table2.column FROM table1 JOIN table2 ON (table1.column=table2.column) WHERE conditions Creating a report that returns the employee id and order id from the Orders table is not difficult. Code Sample: SubqueriesJoinsUnions/Demos/Joins-NoJoin.sql 1 2 3 4 -- Find the EmployeeID and OrderID for all orders
SELECT EmployeeID, OrderID FROM Orders; But this is not very useful as we cannot tell who the employee is that got this order. The next sample shows how we can use a join to make the report more useful. Code Sample: SubqueriesJoinsUnions/Demos/Joins-EmployeeOrders.sql 1 2 3 4 5 6 7 -- Create a report showing employee orders.
SELECT Employees.EmployeeID, Employees.FirstName, Employees.LastName, Orders.OrderID, Orders.OrderDate FROM Employees JOIN Orders ON (Employees.EmployeeID = Orders.EmployeeID) ORDER BY Orders.OrderDate; The above SELECT statement will return the following results:
Table names are used as prefixes of the column names to identify the table in which to find the column. Although this is only required when the column name exists in both tables, it is always a good idea to include the prefixes as it makes the code more efficient and easier to read. Table Aliases Using full table names as prefixes can make SQL queries unnecessarily wordy. Table aliases can make the code a little more concise. The example below, which is identical in functionality to the query above, illustrates the use of table aliases. Code Sample: SubqueriesJoinsUnions/Demos/Joins-Aliases.sql 1 2 3 -- Create a report showing employee orders using Aliases.
SELECT e.EmployeeID, e.FirstName, e.LastName, o.OrderID, o.OrderDate 4 5 6 7 FROM Employees e JOIN Orders o ON (e.EmployeeID = o.EmployeeID) ORDER BY o.OrderDate; Multi-table Joins Multi-table joins can get very complex and may also take a long time to process, but the syntax is relatively straightforward. Syntax 1 2 3 4 5 SELECT table1.column, table2.column, table3.column FROM table1 JOIN table2 ON (table1.column=table2.column) JOIN table3 ON (table2.column=table3.column) WHERE conditions Note that, to join with a table, that table must be in the FROM clause or must already be joined with the table in the FROM clause. Consider the following. 1 2 3 4 5 SELECT table1.column, table2.column, table3.column FROM table1 JOIN table3 ON (table2.column=table3.column) JOIN table2 ON (table1.column=table2.column) WHERE conditions The above code would break because it attempts to join table3 with table2 before table2 has been joined with table1. Code Sample: SubqueriesJoinsUnions/Demos/Joins-MultiTable.sql 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 /* Create a report showing the Order ID, the name of the company that placed the order, and the first and last name of the associated employee. Only show orders placed after January 1, 1998 that shipped after they were required. Sort by Company Name. */
/****************************** Both of the queries below will work in SQL Server
Oracle ******************************/ SELECT o.OrderID, c.CompanyName, e.FirstName, e.LastName FROM Orders o JOIN Employees e ON (e.EmployeeID = o.EmployeeID) JOIN Customers c ON (c.CustomerID = o.CustomerID) WHERE o.ShippedDate > o.RequiredDate AND o.OrderDate > '1-Jan-1998' 16 17 18 19 20 21 22 23 24 25 26 27 28 ORDER BY c.CompanyName;
/****************************** MySQL ******************************/ SELECT o.OrderID, c.CompanyName, e.FirstName, e.LastName FROM Orders o JOIN Employees e ON (e.EmployeeID = o.EmployeeID) JOIN Customers c ON (c.CustomerID = o.CustomerID) WHERE o.ShippedDate > o.RequiredDate AND o.OrderDate > '1998-01-01' ORDER BY c.CompanyName; The above SELECT statement will return the following results:
Like this SQL tutorial? Try our self-paced online SQL courses, which includes videos and exercises in addition to the content in this SQL tutorial. Not sure if you want to pay for that? Register for a free demo of the course. Outer Joins So far, all the joins we have worked with are inner joins, meaning that rows are only returned that have matches in both tables. For example, when doing an inner join between the Employees table and the Orders table, only employees that have matching orders and orders that have matching employees will be returned. As a point of comparison, let's first look at another inner join. Code Sample: SubqueriesJoinsUnions/Demos/OuterJoins-Inner.sql 1 2 3 4 5 /* Create a report that shows the number of employees and customers from each city that has employees in it. */
SELECT COUNT(DISTINCT e.EmployeeID) AS numEmployees, 6 7 8 9 10 11 12 COUNT(DISTINCT c.CustomerID) AS numCompanies, e.City, c.City FROM Employees e JOIN Customers c ON (e.City = c.City) GROUP BY e.City, c.City ORDER BY numEmployees DESC; The above SELECT statement will return the following results:
Left Joins A LEFT JOIN (also called a LEFT OUTER JOIN) returns all the records from the first table even if there are no matches in the second table. Syntax 1 2 3 4 SELECT table1.column, table2.column FROM table1 LEFT [OUTER] JOIN table2 ON (table1.column=table2.column) WHERE conditions All rows in table1 will be returned even if they do not have matches in table2. Code Sample: SubqueriesJoinsUnions/Demos/OuterJoins-Left.sql 1 2 3 4 5 6 7 8 9 10 11 12 /* Create a report that shows the number of employees and customers from each city that has employees in it. */
SELECT COUNT(DISTINCT e.EmployeeID) AS numEmployees, COUNT(DISTINCT c.CustomerID) AS numCompanies, e.City, c.City FROM Employees e LEFT JOIN Customers c ON (e.City = c.City) GROUP BY e.City, c.City ORDER BY numEmployees DESC; All records in the Employees table will be counted whether or not there are matching cities in the Customers table. The results are shown below:
Right Joins A RIGHT JOIN (also called a RIGHT OUTER JOIN) returns all the records from the second table even if there are no matches in the first table. Syntax 1 2 3 4 SELECT table1.column, table2.column FROM table1 RIGHT [OUTER] JOIN table2 ON (table1.column=table2.column) WHERE conditions All rows in table2 will be returned even if they do not have matches in table1. Code Sample: SubqueriesJoinsUnions/Demos/OuterJoins-Right.sql 1 2 3 4 5 6 7 8 9 10 11 12 /* Create a report that shows the number of employees and customers from each city that has customers in it. */
SELECT COUNT(DISTINCT e.EmployeeID) AS numEmployees, COUNT(DISTINCT c.CustomerID) AS numCompanies, e.City, c.City FROM Employees e RIGHT JOIN Customers c ON (e.City = c.City) GROUP BY e.City, c.City ORDER BY numEmployees DESC; All records in the Customers table will be counted whether or not there are matching cities in the Employees table. The results are shown below (not all records shown):
Full Outer Joins A FULL JOIN (also called a FULL OUTER JOIN) returns all the records from each table even if there are no matches in the joined table. Full outer joins are not supported in MySQL 5.x and earlier. Syntax 1 2 3 4 SELECT table1.column, table2.column FROM table1 FULL [OUTER] JOIN table2 ON (table1.column=table2.column) WHERE conditions All rows in table1 and table2 will be returned. Code Sample: SubqueriesJoinsUnions/Demos/OuterJoins-Full.sql 1 2 3 4 5 6 7 8 9 10 /* Create a report that shows the number of employees and customers from each city.
Note that MySQL 5.x does NOT support full outer joins. */
SELECT COUNT(DISTINCT e.EmployeeID) AS numEmployees, COUNT(DISTINCT c.CustomerID) AS numCompanies, e.City, c.City FROM Employees e FULL JOIN Customers c ON 11 12 13 14 (e.City = c.City) GROUP BY e.City, c.City ORDER BY numEmployees DESC; All records in each table will be counted whether or not there are matching cities in the other table. The results are shown below (not all records shown):
Like this SQL tutorial? Try our self-paced online SQL course, which includes videos and exercises in addition to the content in this SQL tutorial. Not sure if you want to pay for that? Register for a free demo of the course. Unions Unions are used to retrieve records from multiple tables or to get multiple record sets from a single table. Code Sample: SubqueriesJoinsUnions/Demos/Unions.sql 1 2 3 4 5 6 7 8 9 10 11 /* Get the phone numbers of all shippers, customers, and suppliers */
SELECT CompanyName, Phone FROM Shippers UNION SELECT CompanyName, Phone FROM Customers UNION SELECT CompanyName, Phone FROM Suppliers ORDER BY CompanyName; 12 13 This query will return the company name and phone number of all shippers, customers and suppliers. UNION ALL By default, all duplicates are removed in UNIONs. To include duplicates, use UNION ALL in place of UNION. UNION Rules Each query must return the same number of columns. The columns must be in the same order. Column datatypes must be compatible. In Oracle, you can only ORDER BY columns that have the same name in every SELECT clause in the UNION Conditional Processing with CASE In this lesson you will learn how to use CASE to add conditional logic to your queries. Lesson Goals To use the CASE function to display different values depending on the values of a column or columns. Lesson Activities 1. Using CASE
Using CASE CASE functions contain one or more WHEN clauses as shown below. Syntax 1 2 3 4 5 6 7 --OPTION 1 SELECT CASE column WHEN VALUE THEN RETURN_VALUE WHEN VALUE THEN RETURN_VALUE WHEN VALUE THEN RETURN_VALUE WHEN VALUE THEN RETURN_VALUE ELSE RETURN_VALUE END 8 9 10 11 12 13 14 15 16 17 18 19 20 21 AS ColumnName FROM table
--OPTION 2 SELECT CASE WHEN EXPRESSION THEN RETURN_VALUE WHEN EXPRESSION THEN RETURN_VALUE WHEN EXPRESSION THEN RETURN_VALUE WHEN EXPRESSION THEN RETURN_VALUE ELSE RETURN_VALUE END AS ColumnName FROM table Code Sample: Case/Demos/Case.sql 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 /* Create a report showing the customer ID and company name, employee id, firstname and lastname, and the order id and a conditional column called "Shipped" that displays "On Time" if the order was shipped on time and "Late" if the order was shipped late. */
SELECT c.CustomerID, c.CompanyName, e.EmployeeID, e.FirstName, e.LastName, OrderID, (CASE WHEN ShippedDate < RequiredDate THEN 'On Time' ELSE 'Late' END) AS Shipped FROM Orders o JOIN Employees e ON (e.EmployeeID = o.EmployeeID) JOIN Customers c ON (c.CustomerID = o.CustomerID) ORDER BY Shipped; The above SELECT statement will return the following results (not all rows shown).
Code Sample: Case/Demos/Case-GroupBy.sql 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 /* Create a report showing the employee firstname and lastname, a "NumOrders" column with a count of the orders taken, and a conditional column called "Shipped" that displays "On Time" if the order shipped on time and "Late" if the order shipped late. Group records by employee firstname and lastname and then by the "Shipped" status. Order by employee lastname, then by firstname, and then descending by number of orders. */
SELECT e.FirstName, e.LastName, COUNT(o.OrderID) As NumOrders, (CASE WHEN o.ShippedDate < o.RequiredDate THEN 'On Time' ELSE 'Late' END) AS Shipped FROM Orders o JOIN Employees e ON (e.EmployeeID = o.EmployeeID) GROUP BY e.FirstName, e.LastName, (CASE WHEN o.ShippedDate < o.RequiredDate THEN 'On Time' ELSE 'Late' END) ORDER BY e.LastName, e.FirstName, NumOrders DESC; The above SELECT statement will return the following results.
Inserting, Updating and Deleting Records Inserting new records into a table is not difficult. Dangerously, it is even easier to update and delete records. Lesson Goals To insert records into a table. To update records in a table. To delete records from a table. Lesson Activities 1. INSERT 2. UPDATE and DELETE
INSERT To insert a record into a table, you must specify values for all fields that do not have default values and cannot be NULL. Syntax 1 2 3 INSERT INTO table (columns) VALUES (values); The second line of the above statement can be excluded if all required columns are inserted and the values are listed in the same order as the columns in the table. We recommend you include the second line all the time though as the code will be easier to read and update and less likely to break as the database is modified. Code Sample: InsertsUpdatesDeletes/Demos/Insert.sql 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 -- Insert a New Employee
/****************************** Both of the inserts below will work in SQL Server
/****************************** MySQL ******************************/ INSERT INTO Employees (LastName, FirstName, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension) VALUES ('Dunn','Nat','Sales Representative','Mr.','1970-02-19', '2004-01-15','4933 Jamesville Rd.','Jamesville','NY', '13078','USA','315-555-5555','130'); If the INSERT is successful, the output will read something to this effect: 1 (1 row(s) affected) Like this SQL tutorial? Try our self-paced online SQL course, which includes videos and exercises in addition to the content in this SQL tutorial. Not sure if you want to pay for that? Register for a free demo of the course. UPDATE The UPDATE statement allows you to update one or more fields for any number of records in a table. You must be very careful not to update more records than you intend to! Syntax 1 2 3 4 5 UPDATE table SET field = value, field = value, field = value WHERE conditions; Code Sample: InsertsUpdatesDeletes/Demos/Update.sql 1 2 3 4 5 -- Update an Employee
UPDATE Employees SET FirstName = 'Nathaniel' WHERE FirstName = 'Nat'; If the UPDATE is successful, the output will read something to this effect: (1 row(s) affected) DELETE The DELETE statement allows you to delete one or more records in a table. Like with UPDATE, you must be very careful not to delete more records than you intend to! Syntax 1 2 DELETE FROM Employees WHERE conditions; Code Sample: InsertsUpdatesDeletes/Demos/Delete.sql 1 2 3 4 -- Delete an Employee
DELETE FROM Employees WHERE FirstName = 'Nathaniel'; If the DELETE is successful, the output will read something to this effect: (1 row(s) affected)