What is PostgreSQL?
its an open source relational database.
What is one way to see if PostgreSQL is running?
sudo service postgresql status
what is a database schema?
Collection of tables and how they are structured
What is a table?
How do you retrieve specific columns from a database table?
values (‘name’, ‘name’, name’)
What is a tuple?
*
* How do you delete rows from a database table?
When do you not put single quotes around values?
numbers and booleans do not need quotes
What is a foreign key?
Column you can use to link to another table
How do you join two SQL tables?
join “films” using (“filmId”)