Coursera: Introduction to Databases Part II
Continuing from my previous article this post is a collection of my notes, and my study of SQL databasing.
Aggregate Functions (Transact-SQL)
Aggregate function - Wikipedia, the free encyclopedia
SQL Functions
in relational database are undefined or unknown, and used to define these to things.
What happens to null values in the database and run queries? In a query they run as blanks and in conditions where the values must meet, null will not be included unless null is specified just like in linq. Distinct includes null values!
Data Modifications Statement Types
- Join
- Inner Join on Condition
- Natural Join
- Inner Join Using (attrs)
Aggregate Functions (Transact-SQL)
Aggregate function - Wikipedia, the free encyclopedia
SQL Functions
in relational database are undefined or unknown, and used to define these to things.
What happens to null values in the database and run queries? In a query they run as blanks and in conditions where the values must meet, null will not be included unless null is specified just like in linq. Distinct includes null values!
Data Modifications Statement Types
- Insert
- Delete
- Example: "Delete From Table where Condition"
- Update
- Example: "Update Table Set Attr = Expression Where Condition"
- We can update multiple of tuples!