-
Notifications
You must be signed in to change notification settings - Fork 1.1k
YSQL Tutorial: Fundamentals
In this tutorial you’ll learn how to use YugaByte DB’s PostgreSQL-compatible YSQL interface to query data from the Northwind sample database using SELECT, FROM, ORDER BY, LIMIT and other basic clauses and operators. For detailed information concerning specific clauses or operators, please refer to the official PostgreSQL documentation.
To start, make sure you have all the necessary prerequisites and have logged into the YSQL shell.fetch
Note: These instructions last tested with YugaByte DB 1.3
Let's begin!
SELECT data from one column
In this exercise we will select all the data in the company_names column from the customers table.
select company_name from customers;
The query should return 91 rows.
SELECT data from multiple columns
In this exercise we will select all the data in three columns from the employees table.
select employee_id,first_name,last_name,birth_date from employees;
The query should return 9 rows.
SELECT data from all the columns and rows in a table
In this exercise we will select all the data, from all columns in the order_details table.
select * from order_details;
The query should return 2155 rows.
SELECT with an expression
In this exercise we will combine the first_name and last_name columns to give us full names, along with their titles from the employees table.
select first_name || '' || last_name as full_name,title from employees;
The query should return 9 rows.
SELECT with an expression, but without a FROM clause
In this exercise we will use an expression, but omit specifying a table because it doesn't require one.
SELECT 5 * 3 AS result;
The query should return 1 row with a result of 15.
SELECT with a column alias
In this exercise we will use the alias title for the contact_title column and output all the rows.
SELECT contact_title AS title FROM customers;
The query should return 91 rows.
SELECT with a table alias
In this exercise we will use the alias details for the order_details table and output all the rows.
SELECT product_id, discount FROM order_details AS details;
The query should return 2155 rows.
SELECT with an ascending ORDER BY
In this exercise we sort employees by first_name in ascending order.
SELECT first_name,
last_name,
title,
address,
city
FROM employees
ORDER BY first_name ASC;
The query should return 9 rows.
SELECT with an descending ORDER BY
In this exercise we sort employees by first_name in descending order.
SELECT first_name,
last_name,
title,
address,
city
FROM employees
ORDER BY first_name DESC;
The query should return 9 rows.
SELECT with a ascending and descending ORDER BYs
In this exercise we sort employees by first_name in ascending order and then by last name in descending order.
SELECT first_name,
last_name
FROM employees
ORDER BY first_name ASC,
last_name DESC;
The query should return 9 rows
SELECT with DISTINCT on one column
In this exercise we query the orders table and return only the distinct values in the order_id column.
SELECT DISTINCT order_id
FROM orders;
The query should return 830 rows
SELECT with DISTINCT including multiple columns
In this exercise we query the orders table and return only the distinct values based on combining the specified columns.
SELECT DISTINCT order_id,
customer_id,
employee_id
FROM orders;
The query should return 830 rows
SELECT with DISTINCT ON expression
In this exercise we query the orders table and ask to keep just the first row of each group of duplicates.
SELECT DISTINCT ON (employee_id)employee_id AS id_number,
customer_id
FROM orders
ORDER BY id_number,
customer_id;
The query should return 9 rows
WHERE clause with an equal = operator
In this exercise we'll query the orders table and return just the rows that equal the employee_id of 8.
SELECT order_id,
customer_id,
employee_id,
order_date
FROM orders
WHERE employee_id=8;
This query should return 104 rows.
WHERE clause with an AND operator
In this exercise we'll query the orders table and return just the rows that have an employee_id of 8 and a customer_id equal to "FOLKO".
SELECT order_id,
customer_id,
employee_id,
order_date
FROM orders
WHERE employee_id=8
AND customer_id= 'FOLKO';
This query should return 6 rows.
WHERE clause with an OR operator
In this exercise we'll query the orders table and return just the rows that have an employee_id of 2 or 1.
SELECT order_id,
customer_id,
employee_id,
order_date
FROM orders
WHERE employee_id=2
OR employee_id=1;
This query should return 219 rows.
WHERE clause with an IN operator
In this exercise we'll query the order_ details table and return just the rows with an order_id of 10360 or 10368.
SELECT *
FROM order_details
WHERE order_id IN (10360,
10368);
This query should return 9 rows.
WHERE clause with a LIKE operator
In this exercise we'll query the customers table and return just the rows that have a company_name that starts with the letter "F".
SELECT customer_id,
company_name,
contact_name,
city
FROM customers
WHERE company_name LIKE 'F%';
This query should return 8 rows.
WHERE clause with a BETWEEN operator
In this exercise we'll query the orders table and return just the rows that have an order_id between 10,985 and 11,000.
SELECT order_id,
customer_id,
employee_id,
order_date,
ship_postal_code
FROM orders
WHERE order_id BETWEEN 10985 AND 11000;
This query should return 16 rows.
WHERE clause with a not equal <> operator
In this exercise we'll query the employees table and return just the rows where the employee_id is not eqal to "1".
SELECT first_name,
last_name,
title,
address,
employee_id
FROM employees
WHERE employee_id <> 1;
This query should return 8 rows.
SELECT with a LIMIT clause
In this exercise we'll query the products table and return just the first 12 rows.
SELECT product_id,
product_name,
unit_price
FROM products
LIMIT 12;
This query should return 12 rows.
SELECT with LIMIT and OFFSET clauses
In this exercise we'll query the products table and skip the first 4 rows before selecting the next 12.
SELECT product_id,
product_name,
unit_price
FROM products
LIMIT 12
OFFSET 4;
This query should return 12 rows.
SELECT with LIMIT and ORDER BY clauses
In this exercise we'll query the products table, order the results in a descending order by product_id and limit the rows returned to 12.
SELECT product_id,
product_name,
unit_price
FROM products
ORDER BY product_id DESC
LIMIT 12;
This query should return 12 rows.
SELECT with FETCH and ORDER BY clauses
In this exercise we'll query the customers table and order the results by company_name in ascending order, while limiting the rows returned to 7.
SELECT customer_id,
company_name,
contact_name,
contact_title
FROM customers
ORDER BY company_name ASC FETCH NEXT 7 ROWS ONLY;
This query should return 7 rows.
SELECT with FETCH, OFFSET and ORDER BY clauses
In this exercise we'll query the customers table and order the results by company_name in ascending order, while limiting the rows returned to the 7 that come after the first 2.
SELECT customer_id,
company_name,
contact_name,
contact_title
FROM customers
ORDER BY company_name ASC
OFFSET 2 FETCH NEXT 7 ROWS ONLY;
This query should return 7 rows.
SELECT with an IN clauses
In this exercise we will query the shippers table and return only the rows that have a shipper_id of 1, 2, 3 or 4.
SELECT *
FROM shippers
WHERE shipper_id IN (1,2,3,4);
This query should return 4 rows
SELECT with a NOT IN clause
In this exercise we will query the shippers table and return all the rows, except those that have a shipper_id of 3 or 4.
SELECT *
FROM shippers
WHERE shipper_id NOT IN (3,4);
This query should return 4 rows
SELECT with an IN clause in a subquery
In this exercise we will query the orders table and return all the rows using a subquery to find all the orders who have an order_date of 1998-05-06.
SELECT
customer_id
FROM
orders
WHERE
CAST (order_date AS DATE) = '1998-05-06';
This query should return 4 rows
SELECT with BETWEEN
In this exercise we will query the products table and find all the products who have a product_id between 10 and 20.
SELECT product_id,
product_name,
quantity_per_unit
FROM products
WHERE product_id BETWEEN 10 AND 20
This query should return 11 rows
SELECT with NOT BETWEEN
In this exercise we will query the products table and find all the products who have a product_id that is not between 10 and 20.
SELECT product_id,
product_name,
quantity_per_unit
FROM products
WHERE product_id NOT BETWEEN 10 AND 20
This query should return 66 rows
SELECT with a LIKE operator
In this exercise we will query the products table and find all the products whose names have the letter C in them.
SELECT product_id,
product_name,
quantity_per_unit
FROM products
WHERE product_name LIKE '%C%'
This query should return 17 rows
SELECT with a LIKE operator using % and _
In this exercise we will query the products table and find all the products whose names have a single character before the letter E appears in them.
SELECT product_id,
product_name,
quantity_per_unit
FROM products
WHERE product_name LIKE '_e%'
This query should return 5 rows
SELECT with a NOT LIKE operator
In this exercise we will query the products table and find all the products whose names do not start with the letter C.
SELECT product_id,
product_name,
quantity_per_unit
FROM products
WHERE product_name NOT LIKE 'C%'
This query should return 68 rows
SELECT with an ILIKE operator
In this exercise we will query the products table using the ILIKE operator (which acts like the LIKE operator) to find the products that have the letter C in them. In addition, the ILIKE operator matches value case-insensitively.
SELECT product_id,
product_name,
quantity_per_unit
FROM products
WHERE product_name ILIKE '%C%'
This query should return 37 rows
SELECT with a IS NULL operator
In this exercise we will query the customers table and find all the customers who do not have a region assigned to them.
SELECT contact_name,
contact_title,
city,
country,
region
FROM customers
WHERE region IS NULL;
This query should return 60 rows
SELECT with a IS NOT NULL operator
In this exercise we will query the customers table and find all the customers who do have a region assigned to them.
SELECT contact_name,
contact_title,
city,
country,
region
FROM customers
WHERE region IS NOT NULL;
This query should return 31 rows
SELECT with a GROUP BY
In this exercise we will query the products table and group the results by product_id, then product_name, and finally unit_price.
SELECT product_id,
product_name,
unit_price
FROM products
GROUP BY product_id,
product_name,
unit_price;
This query should return 77 rows
SELECT with a GROUP BY and a function
In this exercise we will query the orders table and group the results by employee_id, while only returning the total counts of order_id.
SELECT count(order_id),
employee_id
FROM orders
GROUP BY employee_id;
This query should return 9 rows
SELECT with a HAVING clause
In this exercise we will query the products table, group the results and return only those that have a category_id of "5".
SELECT product_id,
product_name,
unit_price,
category_id
FROM products
GROUP BY product_id,
product_name,
unit_price,
category_id
HAVING category_id=5;
This query should return 7 rows
SELECT with a HAVING clause and a function
In this exercise we will query the products table, group the results and return only those unit_price when multiplied by units_in_stock is greater than $2800.
SELECT product_name,
sum(unit_price * units_in_stock),
units_in_stock
FROM products
GROUP BY product_name,
unit_price,
units_in_stock
HAVING unit_price * units_in_stock > 2800;
This query should return 7 rows
SELECT with a HAVING clause and COUNT
In this exercise we will query the products table, group the results and return only those unit_price greater than 28.
SELECT product_name,
sum(unit_price) units_in_stock
FROM products
GROUP BY product_name,
unit_price,
units_in_stock
HAVING unit_price > 28
This query should return 26 rows
SELECT with a HAVING clause and a less than operator
In this exercise we will query the products table, group the results and return only those whose category_id is less than 4.
SELECT product_id,
product_name,
unit_price,
category_id
FROM products
GROUP BY product_id,
product_name,
unit_price,
category_id
HAVING category_id < 4;
This query should return 37 rows
SELECT with a UNION
In this exercise we will query the suppliers and customers table and combine the result sets while removing duplicates it finds.
SELECT company_name
FROM suppliers
UNION
SELECT company_name
FROM customers;
This query should return 120 rows
SELECT with a UNION ALL
In this exercise we will query the suppliers and customers tables and combine the result sets without removing duplicates if they exist.
SELECT company_name
FROM suppliers
UNION ALL
SELECT company_name
FROM customers;
This query should return 120 rows
SELECT with a UNION and ORDER BY
In this exercise we will query the suppliers and customers tables, combine the result sets without removing duplicates if they exist and ordering them in descending order.
SELECT company_name
FROM suppliers
UNION ALL
SELECT company_name
FROM customers
ORDER BY company_name DESC
This query should return 120 rows
SELECT with an INTERSECT
In this exercise we will query the orders and country tables and return the result sets that are found in both tables.
SELECT ship_country
FROM orders INTERSECT
SELECT country
FROM suppliers;
This query should return 12 rows
SELECT with an INTERSECT AND ORDER BY
In this exercise we will query the orders and country tables, return the result sets that are found in both tables and oder them by ship_country.
SELECT ship_country
FROM orders INTERSECT
SELECT country
FROM suppliers
ORDER BY ship_country;
This query should return 12 rows
SELECT with an EXCEPT
In this exercise we will query the orders and country tables and return the distinct rows from the first query that are not in the output of the second.
SELECT ship_country
FROM orders
EXCEPT
SELECT country
FROM suppliers;
This query should return 9 rows
SELECT with a GROUP BY and GROUPING SETS
In this exercise we will query the suppliers table and group the number_of_people results into city, country and contact_title sets.
SELECT contact_title,
count(contact_title) AS number_of_people,
city,
country
FROM suppliers
GROUP BY GROUPING
SETS (city,
country,
contact_title);
This query should return 60 rows
SELECT with a GROUP BY and CUBE
In this exercise we will query the products table, group the results and then generate multiple grouping sets from the results.
SELECT product_id, supplier_id, product_name,
SUM(units_in_stock)
FROM products
GROUP BY product_id, cube(product_id, supplier_id)
This query should return 154 rows
SELECT with a GROUP BY and a partial CUBE
In this exercise we will query the products table, group the results and then generate a subset of grouping sets from the results.
SELECT product_id, supplier_id, product_name,
SUM(units_in_stock)
FROM products
GROUP BY product_id, cube(supplier_id)
This query should return 200 rows
SELECT with a GROUP BY and ROLLUP
In this exercise we will query the products table, group the results by product_id and then generate multiple grouping sets from the results using ROLLUP.
SELECT product_id,
supplier_id,
product_name,
SUM(units_in_stock)
FROM products
GROUP BY product_id,
ROLLUP(supplier_id);
This query should return 154 rows
SELECT with a GROUP BY and PARTIAL ROLLUP
In this exercise we will query the products table, group the results by product_id and then generate multiple grouping sets from the results using ROLLUP.
SELECT product_id,
supplier_id,
product_name,
SUM(units_in_stock)
FROM products
GROUP BY product_id ROLLUP(supplier_id, product_id);
This query should return TBD rows
Like what you see? Don't forget to star us!