Week 9 Flashcards
What is PostgreSQL and what are some alternative relational databases?
PostgreSQL is a relational database system
Alternatives: MySQL, SQL Server by Microsoft, Oracle by Oracle Corporation
What are some advantages of learning a relational database?
It’s the most widely used kind of data base so the chances that you’ll run into it as a developer is high
It also can store and modify data in a way that makes data corruption as unlikely as possible
What is one way to see if PostgreSQL is running?
sudo service postgresql status
What is a database schema?
a collection of tables
describes the rules of how tables can be stored
it defines how the data in a relational database should be organized
What is a table?
a list of rows, each having the same set of attributes aka columns
ex: all students in a “students” table could have “firstName”, “lastName”, and “dateofBirth” attributes
What is a row?
A collection of attributes for a single record in the table
a record/single instance of data
What is SQL and how is it different from languages like JS?
SQL is a declarative language - aka you describe the results you want and the program comes up with its own plan for getting the results
JS is an imperative language – you tell js what to do and how to do it
How do you retrieve specific columns from a database table?
select “name of column” from “name of table”
How do you filter rows based on some specific criteria?
use “where” and the criteria
What are the benefits of formatting your SQL?
consistency and readability
What are four comparison operators that can be used in a where clause?
=, <, >, !=
How do you limit the number of rows returned in a result set?
limit with an integer
How do you retrieve all columns from a database table?
use * (asterisk)
How do you control the sort order of a result set?
you specify it with order by “column-name” … default is ascending order
How do you add a row to a SQL table?
insert into “tableName” (“col1”, “col2”, …)
values (‘val1’, ‘val2’, …)
column names are wrapped in “ “
values are wrapped in ‘ ‘
What is a tuple?
A list of values inside of parenthesis with each value wrapped in ‘ ‘
How do you add multiple rows to a SQL table at once?
You separate the tuples by commas
How do you get back the row being inserted into a table without a separate select statement?
use returning
- for all columns or comma-separated list of column names if you want specific ones
How do you update rows in a database table?
update “tableName”
set “column” = ‘value’
where “column” = ‘value’
ex:
update “products”
set “price” = 100
where “productId” = 24
Why is it important to include a where clause in your update statements?
If you don’t, it’ll update every row in the table
How do you delete rows from a database table?
delete from “table”
where “column” = ‘value”
How do you accidentally delete all rows from a table?
delete from “tableName”
aka forget a where clause
What is a foreign key?
A set of attributes (or columns) that refers to the primary key of another table
How do you join two SQL tables?
select keyword followed by attributes
from keyword followed by name of first table
join keyword followed by name of second table with the using keyword followed by the foreign key in quotes and parentheses
ex:
select *
from “products”
join “suppliers” using (“supplierId”)
How do you temporarily rename columns or tables in a SQL statement?
Dot notation –> table name in quotes followed by dot and column name in quotes (if you’re renaming column” followed by as keyword followed by the temp name for the column in quotes
ex:
“Products”.”name” as “product”
or
“Products” as “p”
What are some examples of aggregate functions?
max(), avg(), count(), min(), sum(), every()
What is the purpose of a group by clause?
places rows into groups/categories
allows you to use aggregates on those groups instead of each row individually
What are the three states a Promise can be in?
- Pending: initial state, neither fulfilled nor rejected
- Fulfilled: operation was completed successfully
- Rejected: operation failed (error)
How do you handle the fulfillment of a Promise?
then() method
How do you handle the rejection of a Promise?
catch() method
OR
use the 2nd parameter in the then() method
What is webpack?
a tool that lets you bundle your javascript modules
starts from multiple modules and the end result is “fewer files” which is commonly 1 file referred to as a bundle
How do you add a devDependency to a package?
nmp install <package_name> --save-dev</package_name>
What is an npm script?
npm scripts are terminal commands that perform a set of actions/allows you to execute repetitive tasks
essentially a command line but with a nickname
How do you execute webpack with npm run?
use npm run along with the name that you assigned to the webpack in the script
What is syntactic sugar?
Syntax within a language that is designed to make things easier to read or to express
What is the typeof an ES6 class?
function
Describe ES6 syntax
class keyword followed by option name and curly braces
inside of curly braces are properties and prototype methods that you want inside of the object
ex:
class Student {
constructor(firstName, lastName, subject) {
this.firstName = firstName;
this.lastName = lastName;
this.subject = subject;
}
getFullName() {
const { firstName, lastName } = this;
return ${firstName} ${lastName}
;
}
getIntroduction() {
const { subject } = this;
const fullName = this.getFullName();
return Hello, my name is ${fullName} and I am studying ${subject}.
;
}
}
What is refactoring?
the process of updating existing code to improve design/structure/implementation of software while keeping the functionality
How are ES modules different from CommonJS modules?
ES modules are official whereas commonJS are a community effort (browsers do not support common js -> must use tools like webpack to make them work)
ES modules use import/export while commonjs modules use require() / module.exports
What kind of modules can webpack support?
commonjs, es and amd modules
What is react?
a javascript library for building user interfaces
What is a react element?
plain old JS object –> object representation of a virtual DOM node
immutable, has no methods and nothing on the prototype
How do you mount a react element to the DOM?
render() which is a method of the reactDom object
What is Babel?
JS compiler
a toolchain that is used to convert ES6 code into a backwards compatible version of JS in current and older browsers
What is a plug-in?
a customization that you add to an existing piece of software
**adds a specific feature to an existing computer program
What is a webpack loader?
loaders are transformations that are applied to the source of a module
How can you make babel and webpack work together?
install babel loader
What is jsx?
Syntax extension to JS
Why must the react object be imported when authorizing JSX in a module?
because jsx is syntactic sugar for the react.createElement() function