Practice SQL Y9
Practice SQL Y9
2.- List columns Address, City and Phone of the database Suppliers
3.- List only the different values of the countries of the database Customers
4.- List the all the columns of the CustomerID number 34 of the database Orders
5.- List the column OrderID of the EmployeeID number 4 of the database Orders
6.- List all the columns of the database Products with SupplierID number 1 and CategoryID number 1
7.- List all the columns of the database Orders with EmployeeID number 3 or ShipperID number 1
8.- List the column ProductName of the database Products without SupplierID number 1
9.- List the columns ProductName and Price of the database Products sort by the price
11.- How many records has the database Customers if Germany is the country?
13.- Calculates the average Price at the database Products about the Supplier number 1
STATEMENTS
SELECT column1 , column2 , ... FROM table_name ;