Skip to content

Commit

Permalink
slight font decrease
Browse files Browse the repository at this point in the history
  • Loading branch information
asboyer committed Jun 20, 2024
1 parent d3fe71d commit a6824fd
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
23 changes: 22 additions & 1 deletion _notes/2024-06-18-sql-course.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion _sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,7 @@ html.transition *:after {
}

#markdown-content {
font-size: 1.2rem !important;
font-size: 1.1rem !important;
line-height: 1.6 !important;
}

Expand Down

0 comments on commit a6824fd

Please sign in to comment.