Statements

There are different versions of the SQL language.

SELECT * 
FROM Customers
ORDER BY Country ASC, CustomerName DESC;

SELECT Country FROM Customers;
SELECT DISTINCT Country FROM Customers;
SELECT COUNT(DISTINCT Country) FROM Customers;

SELECT * 
FROM Customers
WHERE Country='Mexico' AND CustomerName LIKE 'G%';

SELECT *
FROM Customers
WHERE CustomerID=1;

SELECT *
FROM Products
ORDER BY Price ASC;

SELECT *
FROM Products
ORDER BY Price DESC;

SELECT MIN(Price) as SmallestPrice, MAX(Price), AVG(Price)
FROM Products;

SELECT *
FROM Products
WHERE Price BETWEEN 10 AND 20;

SELECT *
FROM Products
WHERE Price > (SELECT AVG(Price) FROM Products);

SELECT MIN(Price) as SmallestPrice, MAX(Price), AVG(Price), CategoryID
FROM Products
GROUP BY CategoryID;

SELECT COUNT(*)
FROM Products;

SELECT CategoryID, COUNT(*)
FROM Products
GROUP BY CategoryID;

SELECT COUNT(Price)
FROM Products;

SELECT COUNT(DISTINCT Price)
FROM Products;

SELECT *
FROM Customers
WHERE Country IN ('Germany', 'France', 'UK');

SELECT *
FROM Customers
WHERE CustomerID in (SELECT CustomerID FROM Orders);

SELECT o.OrderID, o.OrderDate, c.CustomerName  
FROM Customers AS c, Orders AS o  
WHERE c.CustomerName='Around the Horn' AND c.CustomerID=o.CustomerID;

SELECT ProductID, ProductName, CategoryName
FROM 
    Products JOIN Categories ON Products.CategoryID = Categories.CategoryID;

SELECT Customers.CustomerName, Orders.OrderID  
FROM Customers  
LEFT JOIN Orders ON Customers.CustomerID = Orders.CustomerID  
ORDER BY Customers.CustomerName;

SELECT Orders.OrderID, Employees.LastName, Employees.FirstName  
FROM Orders  
RIGHT JOIN Employees ON Orders.EmployeeID = Employees.EmployeeID  
ORDER BY Orders.OrderID;

SELECT Customers.CustomerName, Orders.OrderID  
FROM Customers  
FULL OUTER JOIN Orders ON Customers.CustomerID=Orders.CustomerID  
ORDER BY Customers.CustomerName;

SELECT A.CustomerName AS CustomerName1, B.CustomerName AS CustomerName2, A.City  
FROM Customers A, Customers B  
WHERE A.CustomerID <> B.CustomerID  
AND A.City = B.City  
ORDER BY A.City;

SELECT COUNT(CustomerID), Country  
FROM Customers  
GROUP BY Country  
ORDER BY COUNT(CustomerID) DESC;

SELECT COUNT(CustomerID), Country
FROM customers
GROUP BY Country
HAVING COUNT(CustomerID) > 5;

SELECT OrderID, Quantity,  
CASE  
    WHEN Quantity > 30 THEN 'The quantity is greater than 30'  
    WHEN Quantity = 30 THEN 'The quantity is 30'  
    ELSE 'The quantity is under 30'  
END AS QuantityText  
FROM OrderDetails;


SELECT * INTO CustomersBackup2017  
FROM Customers;

INSERT INTO Customers (CustomerName, City, Country)  
SELECT SupplierName, City, Country FROM Suppliers;

INSERT INTO Customers(CustomerName, ContactName, Address, City, PostalCode, Country)
VALUES ('Cardinal', 'Tom B. Erichsen', 'Skagen 21', 'Stavanger', '4006', 'Norway')

INSERT INTO Customers (CustomerName, ContactName, Address, City, PostalCode, Country)  
VALUES  
('Cardinal', 'Tom B. Erichsen', 'Skagen 21', 'Stavanger', '4006', 'Norway'),  
('Greasy Burger', 'Per Olsen', 'Gateveien 15', 'Sandnes', '4306', 'Norway'),  
('Tasty Tee', 'Finn Egan', 'Streetroad 19B', 'Liverpool', 'L1 0AA', 'UK');


UPDATE Customers
SET ContactName='Alfred Schmidt', City='Frankfurt'
WHERE CustomerID = 1;


DELETE FROM Customers WHERE CustomerName='Alfreds Futterkiste';

DROP TABLE Customers;

Abbreviation

ANSI = American National Standards Institute

ISO = International Organization for Standardization

SQL = Structured Query Language

RDBMS = Relational Database Management System

  1. https://www.w3schools.com/sql/sql_intro.asp
  2. SQLite
  3. Database Examples/Northwind/SQLite