summaryrefslogtreecommitdiff
path: root/blog/src/a/sql_video_notes.md
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2021-06-05 22:41:32 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2021-06-05 22:41:32 -0600
commit4a83bb1a6d5bee0892c294467618bd66b88535a7 (patch)
tree61e2e84276082d2f44f16bc2a2b7de0f32869731 /blog/src/a/sql_video_notes.md
parent755299a5c2a8462a85dc22fff964e93c84bbfd04 (diff)
prettify css add support for wrap images and img/art grids
Diffstat (limited to 'blog/src/a/sql_video_notes.md')
-rw-r--r--blog/src/a/sql_video_notes.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/blog/src/a/sql_video_notes.md b/blog/src/a/sql_video_notes.md
index 91c5976..ff20f26 100644
--- a/blog/src/a/sql_video_notes.md
+++ b/blog/src/a/sql_video_notes.md
@@ -140,10 +140,12 @@ There are different types of SQL JOINs:
* `RIGHT (OUTER) JOIN`: returns all records from the right table, and the matched records from the left table.
* `FULL (OUTER) JOIN`: returns all records when there is a match in either left or right table.
+<div class="img-grid" markdown="1">
![INNER JOIN](images/b/notes/sql/img_innerjoin.gif)
![LEFT JOIN](images/b/notes/sql/img_leftjoin.gif)
![RIGHT JOIN](images/b/notes/sql/img_rightjoin.gif)
![FULL OUTER JOIN](images/b/notes/sql/img_fulljoin.gif)
+</div>
#### Nested queries