SQL Flashcards
SQL
Structured Query Language
Standard language for relational database systems
Three SQL Statement Categories
DDL (Data Definition Language)
DML (Data Manipulation Language)
DCL (Data Control Language)
Commands that define a database, including creating, altering, and dropping tables and establishing constraints
-Create, Drop, Alter, Truncate
DDL (Data Definition Language)
DDL (Data Definition Language)
Commands that define a database, including creating, altering, and dropping tables and establishing constraints
-Create, Drop, Alter, Truncate
Commands that maintain and query a database
-Select, Insert, Update, Delete, Merge
DML (Data Manipulation Language)
DML (Data Manipulation Language)
Commands that maintain and query a database
-Select, Insert, Update, Delete, Merge
Commands that control a database, including administering privileges and committing data
-grant, revoke
DCL (Data Control Language)
DCL (Data Control Language)
Commands that control a database, including administering privileges and committing data
-grant, revoke
Requires order of included clauses
Select From Where Group By Having Order By
SELECT statement
Statement used for queries on a single table or for queries that involve multiple tables Clauses: Select From Where Group by/Having Order By
SQL Boolean Operators (used in where clause to join two conditions)
Not
And
Or
Order of the evaluation of operators
Not first
Then And
Then Or
SQL aggregate functions
Count Avg Max Min Sum
COUNT
The number of entries in a column that are not NULL
AVG
The average for entries in a column - argument must be numeric
MAX
The maximum value in a column (NULL values ignored)
MIN
The minimum value in a column (NULL values ignored)
SUM
The sum of the numeric values in a column
Used to summarize aggregations for records grouped by a given criteria. For each group, one record (row) is returned
GROUP BY
GROUP BY
Used to summarize aggregations for records grouped by a given criteria. For each group, one record (row) is returned
Used together with GROUP BY to specify “group-level” conditions to restrict the groups returned to only those satisfying the group condition(s)
HAVING
HAVING
Used together with GROUP BY to specify “group-level” conditions to restrict the groups returned to only those satisfying the group condition(s)
3 types of JOINs
INNER JOIN
LEFT (OUTER) JOIN
RIGHT (OUTER) JOIN
Returns only the set of records that match in both TABLE A and TABLE B (according to some attribute)
INNER JOIN
Returns only the set of records that match in both TABLE A and TABLE B (according to some attribute)
INNER JOIN
returns all the records in Table A and only the records that match from Table B. It leaves out records in B that have no match in A.
LEFT JOIN
LEFT JOIN
returns all the records in Table A and only the records that match from Table B. It leaves out records in B that have no match in A.
Returns all the records in Table B and only the records that match from Table A. It leaves out records in A that have no match in B
RIGHT JOIN
RIGHT JOIN
Returns all the records in Table B and only the records that match from Table A. It leaves out records in A that have no match in B
Firms use information for what two purposes?
Transactional and analytical
Transactional purposes
Day-to-day operations
Analytical purposes
Trend analyses, forecasts, and input generation for strategies that improve profit or long-term sustainability - compete on analytics
A named, two dimensional table of data which consists of rows (records) and columns (attributes/fields)
Relation
Requirements for a table to qualify as a relation (5)
The table must have a unique name
Attributes (columns) in tables must have unique names
Every attribute (field) value must be atomic (not multivalued)
Every record (row) must be unique
The order of the rows and columns must be irrelevant
Consists of one or more (probably interconnected) relations
Relational database
Relational database
Consists of one or more (probably interconnected) relations
3 crucial activities of a relational database
- Input information into the database
- Update/delete information in the database
- Retrieve information from the database, i.e. run a query on the database
An attribute or set of attributes that uniquely identifies each row
Primary key
Primary key
An attribute or set of attributes that uniquely identifies each row
Existence of a primary key ensures that all rows are unique
Attributes in the primary key cannot be empty (NULL)
Notation when listing attributes: dashed-underlined attribute name(s)
Simple vs composite primary keys
Single attribute vs. multiple attributes
Student ID number vs. so oak security number with birthdate
Natural attribute vs artificial attribute
Name vs student ID number
A named, two dimensional table of data which consists of rows (records) and columns (attributes or fields)
A relation
A relation
A named, two dimensional table of data which consists of rows (records) and columns (attributes or fields)
5 requirements for a table to qualify as a relation
The table must have a unique name
Attributes (columns) in tables must have unique names
Every attribute (field) value must be atomic (NOT multivalued)
Every record (row) must be unique
The order of the columns and rows must be irrelevant
Consists of one or more (probably interconnected) relations
Relational database
Relational database
Consists of one or more (probably interconnected) relations
Three crucial activities of a relational database
- Input information into the database
- Update/delete information in the database
- Retrieve information from the database, i.e. run a query on the database
An attribute or set of attributes that uniquely identifies each row
Primary key
Primary key
An attribute or set of attributes that uniquely identifies each row
- existence of a primary key ensures that all rows are unique
- attributes in the primary key cannot be empty (NULL)
- notation when listing attributes: underlined attribute name(s)
Simple vs composite primary key
Single attribute vs multiple attributes
Student ID number vs security number with birth date
Natural attribute vs artificial attribute
Name vs. student ID number
A relation will probably be normalize if: (6)
When we insert a new record, we don’t have to include more information than might be appropriate at the time
When we delete a record, we don’t have to delete more information than we intend to
When we modify a record, we don’t have to modify the information in more than one place
-only stores information about one thing or entity
-a given fact is stored in only one row
-a given fact is only stored in one place in the database
First step of normalization
Identify entities in the stored information
A type of person, place, object, event, concept about whom/which the organization/user wishes to maintain data to solve a problem
Entity
Entity
A type of person, place, object, event, concept about whom/which the organization/user wishes to maintain data to solve a problem
-traditionally named in the singular
Is an attribute an entity
An attribute is NOT an entity but a feature of an entity that is interesting in the context of the problem we are trying to solve
An instance of an entity
Refers to a specific example of an entity in the “real world”
Second step of normalization
Recognize relationships between entities
Unary relationships
Between instances of the same entity
Binary relationships
Between instances of two entities
Ternary (n-ary relationships)
Between instances of three (or more entities)
One-to-one relationship
Each instance on either side is related to at most one instance in the other side
Each instance on either side is related to at most one instance in the other side
One to one relationship
Each instance on one side of the relationship can have many related instances, but an instance on the other side will have a maximum of one related instance
One to many relationship
One-to-many relationship
each instance on one side of the relationship can have many related instances, but on the other side will have a maximum of one related instance
Many-to-many relationship
Instances on both sides of the relationship can have several related instances on the other side
Instances on both sides of the relationship can have several related instances on the other side
Many-to-many relationship
Third step of normalization
Map the relationships/associations into normalized (well structured), linked relations (tables)
(Might have to be repeated several times)
An attribute or set of attributes in a relation of a database that serves as the primary key of a different relation in the same database
Foreign key
Foreign Key
An attribute or set of attributes in a relation of a database that serves as the primary key of a different relation in the same database
An entity whose primary key is a composite attribute of the primaries keys of each relation it links. Attributes of the relationship itself are also stored as attributes of this
Associate entity
Associative entity
An entity whose primary key is a composite attribute of the primary keys of each relation it links. Attributes of the relationship itself are also stored as attributes of the associative entity
It powers everything from media consumption to appliances, drives modern farming, scientific discovery, and even driving.
The software industry