SQL Queries
These are some examples of queries I have been writing recently to better hone my abilities with SQL which helped be attain my Intermediate SQL Certification from LCC.

This query uses multiple joins to connect a series of separate tables by their Primary and Foreign Keys to get a comprehensive view of the database’s information. You can see we have some inconsistencies within the column titles, such as CustId being used on the Customer tables and CustomerId being used on the OrderId table - not a big problem by any means, but something to be tided up.

I ordered the resulting table by Country and Order Date in descending order to make it easier to read.

In this query I switched the Left join, as it was unnecessary. Afterwards, I decided I wanted to filter the results to get a specific set of data. To do so I included a WHERE clause with OR logical operators to restrict the results to those suppliers in three different countries. I then used an AND operator to include the additional filter with a binary value of 1 in the ‘isDiscontinued’ column to display only discontinued products. Finally, I used ORDER BY to order the results by OrderDate.

{left} In this query I used some aggregate functions to get some basic stats on the UnitPrice and assigned them aliases, while joining the Supplier table to get the CompanyName.

{right} Here I write a similar query to get more detailed stats on the UnitPrice including the SUM aggregate function to get the total number of items purchased. I included culture codes to get the information in proper units, and finally used ORDER BY to get the result arranged by OrderId and ProductId.