Databases Flashcards
What is PostgreSQL and what are some alternative relational databases?
PostgreSQL is a powerful, free, open source Relational Database Management System (RDBMS).
Alternative relational databases: MySQL, SQL Server by Microsoft, Oracle by Oracle Corporation, SQLite
What are some advantages of learning a relational database?
- provide good guarantees about data integrity
- store and modify data in a way that makes data corruption as unlikely as possible.
- knowing SQL language
What is one way to see if PostgreSQL is running?
On terminal –
top command or
sudo service postgresql status
What is a database schema?
- a collection of tables.
- a schema defines how the data in a relational database should be organized.
What is a table?
- relational databases store data in relations.
- A table is a list of rows each having the same set of attributes
What is a row?
a row is a collection of fields that make up a record / values in a table
What is SQL and how is it different from languages like JavaScript?
Structured Query Language (SQL) is the primary way of interacting with relational databases. It is a powerful way of retrieving, creating, and manipulating data in a relational database.
SQL is different from language like JS because it is a declarative programming language. In declarative languages, programmers describe the results they want and the programming environment comes up with its own plan for getting those results.
How do you retrieve specific columns from a database table?
you use the select statement and double quotes the column’s name. If you want multiple column, use a comma.
How do you filter rows based on some specific criteria?
where clause with the comparison operators
What are the benefits of formatting your SQL?
readability
What are four comparison operators that can be used in a where clause?
less than, greater than, equal to (=), not equal to ( != )
How do you limit the number of rows returned in a result set?
at the end of the code block and input “limit” followed by the number
How do you retrieve all columns from a database table?
select all of the columns in a table by replacing the list of column names with an * asterisk
ex select *
How do you control the sort order of a result set?
use the order by clause followed by the “name” of column and the keyword (desc for descending; ascending order is default).
Select statement notes:
- The query starts with the select keyword.
- The select keyword is followed by a comma-separated list of column names, each surrounded by “ double quotes.
- The column names are followed by a from clause specifying which table to retrieve the data from.
- The query must end in a ; semicolon.
- SQL keywords such as select and from are not case-sensitive.
- SQL does not have to be indented, but you should do it anyway for consistent style and therefore readability.
Example: select “name”, “price” from “products”;
Sorting notes:
- The order by clause comes after the from clause.
- The order by clause is followed by a column name in “ double quotes.
- The default sort order of the results is ascending order.
Example: select *
from “products”
order by “price”;
Filtering notes:
- The where clause comes after the from clause.
- The where clause is checking the “category” of each row in the table.
- Text values, such as ‘cleaning’ are wrapped in ‘ single quotes; not double quotes!
- The value of the “category” column is being compared using a single = equals sign. (Other comparisons like , and != are available too).
- Don’t forget: unless the select statement includes an order by clause, the order of the result set is not guaranteed.
Example: select "productId", "name", "price" from "products" where "category" = 'cleaning';
How do you add a row to a SQL table?
Insert statement
Example - “product” table:
insert into “products” (“name”, “description”, “price”, “category”)
values (‘Ostrich Pillow’, ‘Feel comfy and cozy!’, 99, ‘self care’)
What is a tuple?
a list of values (wrapped in parenthesis)
How do you add multiple rows to a SQL table at once?
Using multiple tuples separated by commas.
Example - “product” table:
insert into “products” (“name”, “description”)
values (‘Ostrich Pillow’, ‘Feel comfy and cozy!’),
(‘Tater Mitts’, ‘Scrub some taters!’)
returning *;
How do you get back the row being inserted into a table without a separate select statement?
returning clause
returning * or the returning attributes
Insert notes:
- The statement begins with the insert keyword.
- The table to insert into is specified in “ double quotes.
- The list of columns being inserted is wrapped in () parenthesis.
- The values being inserted are also wrapped in () in parenthesis in the same order as the columns they belong to. In SQL, a list of values is referred to as a tuple.
- Text values are wrapped in ‘ single quotes.
- Numeric values are represented with literal numbers (or decimals if applicable).
- If an id is left out, the tables are often configured to auto-generate identifier attributes to avoid accidental duplicates.
How do you update rows in a database table?
Update statement
Example - “product” table:
update “products”
set “price” = 100
where “productId” = 24;
Why is it important to include a where clause in your update statements?
So that it don’t update all the rows of the column. The where clause will target specific rows
How do you delete rows from a database table?
delete from statement and where clause
Example - “product” table:
delete from “products”
where “category” = ‘cleaning’
and “price” < 20;
How do you accidentally delete all rows from a table?
By not specifying which rows with the “where” clause
What is a foreign key?
one column word/key that links two separate tables (column found in both tables)
How do you join two SQL tables?
Use “select”, then the column name in double-quotations and commas after if need multiple columns. Then, use the “from” clause to indicate which table name in double quotations. Next use the “join” clause followed by table name that you want to join in double quotations and then use the using keyword and (foreign key) with double quotes inside parentheses.
select *
from “products”
join “suppliers” using (“supplierId”);
How do you temporarily rename columns or tables in a SQL statement?
use the “as” keyword to rename;
example:
“products” as “p” for renaming tables
“product”.”name” as “product” for columns (the .”name” is the original name of column).
What are some examples of aggregate functions?
count( ), sum( ), avg( ), max( )
What is the purpose of a group by clause?
to separate rows intro groups and perform aggregate functions on those groups of rows