GithubHelp home page GithubHelp logo

sql.letsgettogether's Introduction

SQL: Let's Get Together

Given the scenarios, add the the directed queries to the "answers" directory's files.

Introduction to Joins

Insert the missing parts in the JOIN clause to join the two tables Enrolments and Students, using the StudentID field in both tables as the relationship between the two tables.

SELECT *
FROM Enrolments
LEFT JOIN Students
[insert clause here];

(Add your query to the file exercise1.sql)

Choose the correct JOIN clause to select all records from the two tables where there is a match in both tables.

SELECT *
FROM Enrolments
[insert clause here]
ON Enrolments.StudentID=Students.StudentID;

(Add your query to the file exercise2.sql)

Choose the correct JOIN clause to select all the records from the Students table plus all the matches in the Enrolments table.

SELECT *
FROM Enrolments
[insert clause here]
ON Enrolments.StudentID=Students.StudentID;

(Add your query to the file exercise3.sql)

Grouping records by Column

List the number of Students in each Country.

(Add your query to the file exercise4.sql)

List the number of Students in each Country, ordered by the Country with the most Students first.

(Add your query to the file exercise5.sql)

List the number of Students in each Country, ordered by the Country with the most Students first, where the number of students is greater than 10.

(Add your query to the file exercise6.sql)

sql.letsgettogether's People

Contributors

thesleuth avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.