Skip to content

Commit

Permalink
Update website queries (great tests!!)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-sixty committed May 23, 2023
1 parent 4aeab70 commit 89c3a8a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions web/website/content/_index.md
Expand Up @@ -90,7 +90,7 @@ showcase_section:
sql: |
SELECT id, first_name, age
FROM employees
ORDER BY age
ORDER BY age NULLS LAST
LIMIT 10
- id: friendly-syntax
Expand All @@ -114,7 +114,7 @@ showcase_section:
AND recorded > DATE '2008-01-01'
AND released - recorded < INTERVAL 180 DAY
ORDER BY
length DESC
length DESC NULLS LAST
- id: orthogonal
label: Orthogonality
Expand Down Expand Up @@ -202,7 +202,7 @@ showcase_section:
SUM(paycheck) OVER (
PARTITION BY employee_id
ORDER BY
month ROWS BETWEEN 11 PRECEDING
month NULLS LAST ROWS BETWEEN 11 PRECEDING
AND CURRENT ROW
) AS trail_12_m_comp
FROM
Expand Down Expand Up @@ -238,7 +238,7 @@ showcase_section:
ROW_NUMBER() OVER (
PARTITION BY role
ORDER BY
join_date
join_date NULLS LAST
) AS _expr_0
FROM
employees
Expand Down Expand Up @@ -311,7 +311,7 @@ showcase_section:
FROM
employees
ORDER BY
age
age NULLS LAST
principles_section:
enable: true
Expand Down

0 comments on commit 89c3a8a

Please sign in to comment.