JOIN
will combine rows from different tables if the join condition is true.LEFT JOIN
will return every row in the left table, and if the join condition is not met,NULL
values are used to fill in the columns from the right table.- Primary key is a column that serves a unique identifier for the rows in the table.
- Foreign key is a column that contains the primary key to another table.
CROSS JOIN
lets us combine all rows of one table with all rows of another table.UNION
stacks one dataset on top of another.WITH
allows us to define one or more temporary tables that can be used in the final query.
My name is Emine Guven. I am an applied mathematician and study quantitative biology. My interests are cellular aging, VEGF receptors clustering, math modeling of biological systems with a broad focus on data analysis and simulations.This site is reserve as a notebook to keep my studies fresh and open to my students and collaborators.
Tuesday, November 6, 2018
SQL
Adapted from codecademy.com SQL course:
Subscribe to:
Posts (Atom)