Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Query Live Database
Search
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
Christina Koch
August 23, 2016
Programming
0
650
Query Live Database
Christina Koch
August 23, 2016
Tweet
Share
More Decks by Christina Koch
See All by Christina Koch
Data Carpentry SQL Introduction
christinalk
0
1.3k
The Office Hours Data Conundrum
christinalk
0
180
A Different Kind of Carpentry
christinalk
0
200
Best Practices For All
christinalk
0
150
Workshop Development en breve
christinalk
0
110
Software Portability
christinalk
0
320
Software Licenses and Interpreted Languages
christinalk
0
130
Research Computing Taxonomy
christinalk
0
220
HTCondor User Tutorial
christinalk
0
320
Other Decks in Programming
See All in Programming
LLM Observabilityによる 対話型音声AIアプリケーションの安定運用
gekko0114
2
440
Amazon Bedrockを活用したRAGの品質管理パイプライン構築
tosuri13
5
830
並行開発のためのコードレビュー
miyukiw
2
1.6k
atmaCup #23でAIコーディングを活用した話
ml_bear
3
430
izumin5210のプロポーザルのネタ探し #tskaigi_msup
izumin5210
1
160
OSSとなったswift-buildで Xcodeのビルドを差し替えられるため 自分でXcodeを直せる時代になっている ダイアモンド問題編
yimajo
3
630
AIエージェントのキホンから学ぶ「エージェンティックコーディング」実践入門
masahiro_nishimi
7
940
NetBSD+Raspberry Piで 本物のPSGを鳴らすデモを OSC駆動の7日間で作った話 / OSC2026Osaka
tsutsui
1
110
生成AIを活用したソフトウェア開発ライフサイクル変革の現在値
hiroyukimori
PRO
0
120
ぼくの開発環境2026
yuzneri
0
260
ノイジーネイバー問題を解決する 公平なキューイング
occhi
0
110
AIに仕事を丸投げしたら、本当に楽になれるのか
dip_tech
PRO
0
110
Featured
See All Featured
Hiding What from Whom? A Critical Review of the History of Programming languages for Music
tomoyanonymous
2
440
Amusing Abliteration
ianozsvald
0
110
Bridging the Design Gap: How Collaborative Modelling removes blockers to flow between stakeholders and teams @FastFlow conf
baasie
0
460
The untapped power of vector embeddings
frankvandijk
1
1.6k
Agile Actions for Facilitating Distributed Teams - ADO2019
mkilby
0
120
Imperfection Machines: The Place of Print at Facebook
scottboms
269
14k
The SEO Collaboration Effect
kristinabergwall1
0
360
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
47
8k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
249
1.3M
[SF Ruby Conf 2025] Rails X
palkan
1
770
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
25
1.7k
Beyond borders and beyond the search box: How to win the global "messy middle" with AI-driven SEO
davidcarrasco
1
58
Transcript
QUERIES FOR A LIVE STUDENT DB used in conjunc+on
with www.datacarpentry.org/sql-‐ecology-‐lesson/
Fill out your cards • Name: first name
• Height: in INCHES • Dept (department): close enough (just pick one if you don’t have a home department) • DoC (Dog or Cat): Dog, Cat, Both, Neither, or leave blank
None
SELECT name FROM students
select name,name from StUdEnTs
SELECT name, height FROM students
SELECT name, height*2.54 FROM students
None
SELECT name, dept FROM students WHERE height <= 66
SELECT name, dept FROM students WHERE DoC IN (‘Dog’,
‘Cat’)
SELECT name, height*2.54 FROM students ORDER BY height
SELECT name, height*2.54 FROM students WHERE height >= 68
ORDER BY name DESC
None
SELECT COUNT(*) FROM students
SELECT COUNT(*) FROM students GROUP BY DoC
SELECT MAX(height), MIN(height) FROM students GROUP BY DoC