Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroelfs committed Dec 20, 2024
1 parent 73d020d commit ec85de1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
23 changes: 14 additions & 9 deletions content/blog/2024-sql-notebooks-with-quarto/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,23 +127,28 @@ Let's also hide the code chunk itself and only show the output with the `echo` o
```{sql}
#| label: get-tables-in-superheroes-db
#| echo: false
#| connection: con_flights
#| connection: con_superheroes

SHOW TABLES;
```
````

And the output looks like this:

| name |
|:---------|
| airlines |
| airports |
| flights |
| planes |
| weather |
| name |
|:---------------|
| alignment |
| attribute |
| colour |
| gender |
| hero_attribute |
| hero_power |
| publisher |
| race |
| superhero |
| superpower |

5 records
Displaying records 1 - 10

## Exploratory data analysis example

Expand Down
4 changes: 2 additions & 2 deletions content/blog/2024-sql-notebooks-with-quarto/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Let's also hide the code chunk itself and only show the output with the `echo` o
```{{sql}}
#| label: get-tables-in-superheroes-db
#| echo: false
#| connection: con_flights
#| connection: con_superheroes
SHOW TABLES;
```
Expand All @@ -139,7 +139,7 @@ And the output looks like this:
```{sql}
#| label: show-tables-in-superheroes-db
#| echo: false
#| connection: con_flights
#| connection: con_superheroes
SHOW TABLES;
```
Expand Down

0 comments on commit ec85de1

Please sign in to comment.