title | length | tags |
---|---|---|
Intermediate SQL |
90 minutes |
SQL |
By the end of this lesson, you will know/be able to:
Each test where routerLink is present | |
import { RouterModule } from '@angular/router'; | |
import { APP_BASE_HREF } from '@angular/common'; | |
TestBed.configureTestingModule({ | |
declarations: [ NavComponent ], | |
providers: [ | |
{provide: APP_BASE_HREF, useValue: '/'}, | |
{ provide: AuthService, useValue: mockAuthService } |
Group Member Names: Jared, Josh, Sunny
When are group members available to work together? What hours can each group member work individually? Are there any personal time commitments that need to be discussed? Anytime. Josh needs to catch the last train but thats pretty late.
How will group members communicate? How often will communication happen, and how will open lines of communication be maintained? Private slack channel
A primary key is the primary unique identifier of a table, a foreign key is the primary key of another table that serves as as the relationship between the two tables. A primary key is generally named id, a foreign key is named othertable_id whith the name of the table the foriegn key links to followed by id.
one-to-one
relationship.
one-to-many relationship
.
many-to-many relationship
.SQL: Declarative RUBY: Object oriented
Written in an object oriented language and wrapped around a relational database The object classes are mapped to the data tables in the database and the object instances are mapped to individual rows in that database
Create Read Update Delete