Databases Flashcards
table consists of these two things
columns and rows
columns are known as what
fields
rows are known as what
records
difference bw spreadsheet and db
db can define and traverse relationships between tables
issue commands to interact
what is a database
set of tables
column
set of data of single simple type
row
single record of data like “Kevin”
field
intersection of c and r
index
data structure on a table to increase lookup speed
foreign key
table column whose values reference rows in another table.
foundation of relational dbs
example table:pages
subject_id referencing subject table (singular nomenclaure)
a foreign key should always have what
indexes so you can find relationships quickly
schema
structural definition of a db, defines table, columns, rows, etc, everything that makes up the structure of a database
if you import a schema what happens
creates complete db with correct structure, but without data
CRUD
create read update delete (fundamental way of interacting with a db)
grant privelages
gives privelages for something like a db.* (*is wild card so all tables on that db)
1-1 db
classroom:teacher – A classroom has one teacher, a teacher belongs to a classroom,fk goes to teachers table
to find the teacher you could use fk to match pk of classroom and vice versa
foreign key always belongs to the child
true
1-many
teacher has many courses, course velongs to teacher, fk goes on courses table
the fk is the id of the teacher
many to many association
course has many students, and also belongs to many students, a student has many courses and also belongs to many courses
interrelation which would mean two fk’s that go into a join table (third table to make relationships)
to look up, take michaels fk, then find courses with same key