From a6824fd507902977f9555e0602f7fbdccd3f1d40 Mon Sep 17 00:00:00 2001 From: Andrew Boyer Date: Thu, 20 Jun 2024 02:53:12 +0100 Subject: [PATCH] slight font decrease --- _notes/2024-06-18-sql-course.md | 23 ++++++++++++++++++++++- _sass/_base.scss | 2 +- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/_notes/2024-06-18-sql-course.md b/_notes/2024-06-18-sql-course.md index 378d6704..df5305ef 100644 --- a/_notes/2024-06-18-sql-course.md +++ b/_notes/2024-06-18-sql-course.md @@ -327,9 +327,30 @@ ORDER BY name ASC; -- displays order from major first, then name SELECT * FROM STUDENT -ORDER BY major, name +ORDER BY major, name; + +-- only gives 2 results +SELECT * +FROM student +LIMIT 2; + +-- use WHERE to specify +SELECT name, major +FROM student +WHERE major = 'Chemistry' OR name == 'Lucas'; + +-- comparison operators: +-- <, >, <=, >=, =, <>, AND, OR + +-- use set of data to filter +SELECT * +FROM STUDENT +WHERE name IN ('Kaden', 'Lucas', 'Quin') and student_id > 2; ``` +#### Complex schema +Moving on from basics and core concepts, moving towards applicable examples + --- [^1]: two or more events happening at the same time diff --git a/_sass/_base.scss b/_sass/_base.scss index 0187c19f..bb980fc8 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -973,7 +973,7 @@ html.transition *:after { } #markdown-content { - font-size: 1.2rem !important; + font-size: 1.1rem !important; line-height: 1.6 !important; }