diff --git a/_includes/giscus.liquid b/_includes/giscus.liquid index f92c7bb2..4a7211e8 100644 --- a/_includes/giscus.liquid +++ b/_includes/giscus.liquid @@ -17,6 +17,7 @@ 'data-lang': 'en', crossorigin: 'anonymous', async: '', + 'data-loading': 'lazy', }; let giscusScript = document.createElement('script'); Object.entries(giscusAttributes).forEach(([key, value]) => giscusScript.setAttribute(key, value)); diff --git a/_notes/2024-06-18-sql-course.md b/_notes/2024-06-18-sql-course.md index bf713ef5..cb1adfd8 100644 --- a/_notes/2024-06-18-sql-course.md +++ b/_notes/2024-06-18-sql-course.md @@ -1,7 +1,7 @@ --- layout: post -date: 2024-06-18 05:00:00 -time: 9:44pm +date: 2024-06-19 05:00:00 +time: 9:10pm location: Lisbon, Portugal inline: false related_posts: false @@ -10,6 +10,9 @@ giscus_comments: true unfinished: true notebook: true --- + + 6/18/24 • 9:44pm + --- Notes from [SQL Tutorial - Full Database Course for Beginners](https://www.youtube.com/watch?v=HXV3zeQKqGY) @@ -119,4 +122,35 @@ ie: two columns uniquely defining a row to make a primary key --- + 6/19/24 • 9:10pm + +### SQL Basics +Not technically a programming language +Language used for interacting with relational database management systems + +SQL +: structured query language + +There are different "flavors" SQL \ +Sometimes different depending on the management system + +#### 4 aspects +Data Query language (DQL) +: used to get data already stored + +Data definition language (DDL) +: define layout, schema + +Data control language (DCL) +: used for controlling access to the data in the database + +Data manipulation language (DML) +: used for inserting, updating, deleting data from the databases + +#### Queries +Goal is to only get the data you need \ +Often hidden in a complex schema + +--- + [^1]: two or more events happening at the same time \ No newline at end of file diff --git a/_sass/_base.scss b/_sass/_base.scss index 10be35e9..0187c19f 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -1460,3 +1460,9 @@ ninja-keys::part(ninja-input-wrapper) { margin-bottom: 30px; } } + +#dt { + color: var(--global-text-color-light); + font-size: 1.1em; + font-weight: 100; +}