As we continue to explore databases and ideas, this project will help you practice model databases and relationships, as well as help you get started on your capstone project.
First, you will expand your CompanyDatabase to have Departments, Products and Orders. You will be crafting queries for these new tables.
After that, this weekend is the next big push your final project, work on the HTML and CSS; As well as the database schema.
Objectives
Work with Foreign Keys
Craft Queries
Further your final project
Requirements
Add a few tables and foreign keys to an existing database
Create the Schema for your final project
Work on the HTML & CSS for your final project
Explorer Mode
[x] In your Company Database, add a table named:
C#: Departments. Give this table a few columns
[x] Add a Foreign key named:
C# DepartmentId to your Employee Table
[x] Add tables named:
C#: Products and Orders.
Orders should have the columns
OrderNumber as string
Id as a primary key
DatePlaced as datetime
Email as string
Product should have the columns
Id as a primary key
Price as double
Name as string
Description as string
NumberInStock as int
[x] In our company, 1 Order can have many Products and 1 Product can have many Orders. This will be a Many-to-Many relationship. Create the 3 tables (Orders, Products and ProductOrders) and foreign keys needed for this to happen
[x] Create queries that can do the following:
[x] Given a department id, give me all employees in the department
[x] Given a department name, give me the phone extensions
[x] Find all orders that contain the product id of 2
[x] Given an order id, display on the OrderNumber, and all the product names
[x] Inserts a new product
[x] Inserts a new order
[ ] Adds a product to an order
[x] Adds a new employee to a department
[x] Updating a employee's department
[ ] Removing a product from an order
[ ] Turn in the above queries as a gist
[ ] Work on your final project HTML. DO not sleep on this. You have the time and resources to get a good bit of this done this weekend.
[ ] Complete your first draft of your database schema for your final project.
Foreign Keys - The SQL
As we continue to explore databases and ideas, this project will help you practice model databases and relationships, as well as help you get started on your capstone project.
First, you will expand your CompanyDatabase to have
Departments
,Products
andOrders
. You will be crafting queries for these new tables.After that, this weekend is the next big push your final project, work on the HTML and CSS; As well as the database schema.
Objectives
Requirements
Explorer Mode
[x] In your Company Database, add a table named:
Departments
. Give this table a few columns[x] Add a Foreign key named:
DepartmentId
to yourEmployee
Table[x] Add tables named:
Products
andOrders
.Orders
should have the columnsOrderNumber
as stringId
as a primary keyDatePlaced
as datetimeEmail
as stringProduct
should have the columnsId
as a primary keyPrice
as doubleName
as stringDescription
as stringNumberInStock
as int[x] In our company, 1
Order
can have manyProducts
and 1Product
can have manyOrders
. This will be a Many-to-Many relationship. Create the 3 tables (Orders
,Products
andProductOrders
) and foreign keys needed for this to happen[x] Create queries that can do the following:
2
OrderNumber
, and all the product names[ ] Turn in the above queries as a gist
[ ] Work on your final project HTML. DO not sleep on this. You have the time and resources to get a good bit of this done this weekend.
[ ] Complete your first draft of your database schema for your final project.
Adventure Mode
Epic Mode
Additional Resources
Recommended Practice: