Problem
Write SQL queries. Open the Company database in the SQLite Browser and create the following SQL queries:
I. For each warehouse display a country and a city.
II. For each warehouse display a warehouse address, city, country, and a region name. In this query you need to use two tables: s_warehouse and s_region.
III. Display all customers with names starting from the letter 'S'.
IV. Display last names and userid of employees whose manager id is '2' and salaries are less than $1600.
V. Display order ids with customer id is NOT '208'.
VI. Display order id with order date starting later or on 1 September 2012.
You need to follow to the 'Good practice style' of SQL writing:
Write SQL commands in capital letter where appropriate
Use aliases for column names- WHAT TO SUBMIT: