Platform
Solutions
Resources
Pricing
Sign in
Sign up
Charles Redmond
Workspace
Fork
Public
aaa-Database550Fall23
By
Charles Redmond
Edited
Oct 31, 2023
4 forks
2
aaa-Database550Fall23
Plotting Template
Class Exercise Part 2
Make-up Quiz
Views and Analytics
The CASE Statement
CASE Part 2
Correlated SubQueries
Quiz 6
Chinook Problems
Subqueries
Sets Part 2
Sets
H VS SO Application
Homerun Application
Plotting Tutorial
Data Viz
Joins
Baseball Database
Creating and Populating a Database
Insert cell
Insert cell
battingFile
=
FileAttachment
(
"Batting.csv"
)
.
csv
(
{
typed
:
true
}
)
Insert cell
peopleFile
=
FileAttachment
(
"People.csv"
)
.
csv
(
{
typed
:
true
}
)
Insert cell
db
=
DuckDBClient
.
of
(
{
batting
:
battingFile
,
people
:
peopleFile
}
)
Insert cell
db
CREATE VIEW classData
(nameFirst,nameLast,playerID,teamID,yearID,HR)
AS
SELECT nameFirst,nameLast,batting.playerID,teamID,yearID,HR
FROM batting INNER JOIN people
ON batting.playerID = people.playerID
Insert cell
db
SELECT * FROM classData
Insert cell
db
SELECT playerID,teamID,yearID,HR,max(HR) OVER ()
FROM batting
Insert cell
db
SELECT playerID,sum(HR) AS careerHR,max(careerHR) OVER ()
FROM batting
GROUP BY playerID
Insert cell
db
SELECT playerID,teamID,yearID,HR,max(HR) OVER (partition by teamID)
FROM batting
WHERE yearID = 2022
ORDER BY teamID
Insert cell
db
SELECT playerID,teamID,yearID,HR,max(HR) OVER (partition by teamID,yearID)
FROM batting
WHERE yearID > 2000
ORDER BY teamID,yearID
Insert cell
db
SELECT playerID,teamID,yearID,HR,rank() OVER (order by HR DESC) AS rank
FROM batting
Insert cell
db
SELECT playerID,teamID,yearID,HR,row_number() OVER ()
FROM batting
Insert cell
db
SELECT playerID,sum(HR) AS careerHR,rank() OVER (order by careerHR DESC)
FROM batting
GROUP BY playerID
Insert cell
db
SELECT playerID,teamID,yearID,HR,rank
FROM
(SELECT playerID,teamID,yearID,HR,rank() OVER (partition by teamID order by HR DESC) AS rank
FROM batting
WHERE yearID = 2022)
WHERE rank <= 10
ORDER BY teamID,rank
Insert cell
db
SELECT playerID,teamID,yearID,HR,100*HR/sum(HR) OVER (partition by teamID) AS percent
FROM batting
WHERE yearID = 2022
ORDER BY teamID,percent DESC
Insert cell
db
SELECT playerID,teamID,yearID,HR,sum(HR) OVER(rows unbounded preceding)
FROM batting
WHERE playerID = 'ruthba01'
Insert cell
db
SELECT playerID,teamID,yearID,HR, avg(HR) OVER(rows between 1 preceding and 1 following)
FROM batting
WHERE playerID = 'ruthba01'
Insert cell
db
SELECT playerID,teamID,yearID,HR, lead(HR,1) OVER ()
FROM batting
WHERE playerID = 'ruthba01'
Insert cell
db
SELECT playerID,teamID,yearID,HR, 100*(HR - lag(HR,1) OVER ())/(lag(HR,1) OVER ())
FROM batting
WHERE playerID = 'ruthba01'
Insert cell
db
SELECT playerID,group_concat(DISTINCT teamID)
FROM batting
WHERE playerID = 'ruthba01'
GROUP BY playerID
Insert cell
One platform
to build and deploy the best data apps
Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Try it for free
Learn more
Fork
View
Export
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
battingFile
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
peopleFile
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
db
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
Cells
db
File attachments
Batting.csv
CSV
People.csv
CSV
Databases
Add comment
Select
Duplicate
Copy link
Embed
Delete
Cells
db
File attachments
Batting.csv
CSV
People.csv
CSV
Databases
Add comment
Select
Duplicate
Copy link
Embed
Delete
Cells
db
File attachments
Batting.csv
CSV
People.csv
CSV
Databases
Add comment
Select
Duplicate
Copy link
Embed
Delete
Cells
db
File attachments
Batting.csv
CSV
People.csv
CSV
Databases
Add comment
Select
Duplicate
Copy link
Embed
Delete
Cells
db
File attachments
Batting.csv
CSV
People.csv
CSV
Databases
Add comment
Select
Duplicate
Copy link
Embed
Delete
Cells
db
File attachments
Batting.csv
CSV
People.csv
CSV
Databases
Add comment
Select
Duplicate
Copy link
Embed
Delete
Cells
db
File attachments
Batting.csv
CSV
People.csv
CSV
Databases
Add comment
Select
Duplicate
Copy link
Embed
Delete
Cells
db
File attachments
Batting.csv
CSV
People.csv
CSV
Databases
Add comment
Select
Duplicate
Copy link
Embed
Delete
Cells
db
File attachments
Batting.csv
CSV
People.csv
CSV
Databases
Add comment
Select
Duplicate
Copy link
Embed
Delete
Cells
db
File attachments
Batting.csv
CSV
People.csv
CSV
Databases
Add comment
Select
Duplicate
Copy link
Embed
Delete
Cells
db
File attachments
Batting.csv
CSV
People.csv
CSV
Databases
Add comment
Select
Duplicate
Copy link
Embed
Delete
Cells
db
File attachments
Batting.csv
CSV
People.csv
CSV
Databases
Add comment
Select
Duplicate
Copy link
Embed
Delete
Cells
db
File attachments
Batting.csv
CSV
People.csv
CSV
Databases
Add comment
Select
Duplicate
Copy link
Embed
Delete
Cells
db
File attachments
Batting.csv
CSV
People.csv
CSV
Databases
Add comment
Select
Duplicate
Copy link
Embed
Delete
Cells
db
File attachments
Batting.csv
CSV
People.csv
CSV
Databases
Add comment
Select
Duplicate
Copy link
Embed
Delete
Cells
db
File attachments
Batting.csv
CSV
People.csv
CSV
Databases