Skip to content

Commit dc630fb

Browse files
committed
initial commit
0 parents  commit dc630fb

File tree

13 files changed

+2451
-0
lines changed

13 files changed

+2451
-0
lines changed

.Rprofile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
source("renv/activate.R")

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.Rproj.user
2+
.Rhistory
3+
.RData
4+
.Ruserdata

_quarto.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
project:
2+
type: website
3+
4+
website:
5+
title: "sql-cheat-sheet"
6+
navbar:
7+
left:
8+
- href: index.qmd
9+
text: Basic syntax
10+
11+
format:
12+
html:
13+
theme: cosmo
14+
css: styles.css
15+
toc: true
16+
17+
editor: visual
18+

index.qmd

Lines changed: 1059 additions & 0 deletions
Large diffs are not rendered by default.

learn-sql-figures/intersect.png

96.4 KB
Loading

learn-sql-figures/schema.png

151 KB
Loading
62.9 KB
Loading

renv.lock

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"R": {
3+
"Version": "4.3.1",
4+
"Repositories": [
5+
{
6+
"Name": "CRAN",
7+
"URL": "https://packagemanager.posit.co/cran/latest"
8+
}
9+
]
10+
},
11+
"Packages": {
12+
"renv": {
13+
"Package": "renv",
14+
"Version": "1.0.11",
15+
"Source": "Repository",
16+
"Repository": "CRAN",
17+
"Requirements": [
18+
"utils"
19+
],
20+
"Hash": "47623f66b4e80b3b0587bc5d7b309888"
21+
}
22+
}
23+
}

renv/.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
library/
2+
local/
3+
cellar/
4+
lock/
5+
python/
6+
sandbox/
7+
staging/

0 commit comments

Comments
 (0)