Skip to content

Instantly share code, notes, and snippets.

View nibishakajean's full-sized avatar
🎯
Focusing

N.Jean Felix nibishakajean

🎯
Focusing
View GitHub Profile
@nibishakajean
nibishakajean / databases-week1-exercises.sql
Last active June 20, 2024 05:34
Class 23 - Week 1 Exercises #7
-- 1. What are the names of countries with population greater than 8 million?
SELECT name from country WHERE Population > 8000000;
-- 2. What are the names of countries that have “land” in their names?
SELECT name from country where Name LIKE "%land%"
-- 3. What are the names of the cities with population in between 500,000 and 1 million?
@nibishakajean
nibishakajean / formula1.sql
Last active June 21, 2024 07:07
Exercises Week 2
Exercises Week 2
--Exercise 3: Formula 1
-- Creating Team table
CREATE TABLE Team (
name VARCHAR(100) PRIMARY KEY,
country VARCHAR(100)
@nibishakajean
nibishakajean / DESIGN.md
Last active June 29, 2024 06:56
Exercises Week 3(Database)

Design Document - "Course and Career Guidance Database"

By Jean Felix Nibishaka

Scope

Purpose

The purpose of this database is to assist students in selecting courses that align with their future career aspirations. It helps students understand the possible careers for each course, the potential careers when combining courses, the duration required to complete their studies, the expected salary after graduation, and the challenges associated with each career.

Scope of the Database

Included: