Relationenalgebra auf der Kommandozeile - eine Marp Praesentation.
Zeigt wie klassische SQL-Operationen mit Unix-Tools umgesetzt werden koennen:
| SQL | Shell |
|---|---|
SELECT * |
cat, awk '{print}' |
SELECT col1, col2 |
awk '{print $1, $2}' |
WHERE |
grep, awk '{if ...}' |
UNION |
cat file1 file2 | sort | uniq |
EXCEPT |
comm -23 |
FROM R, S |
cartesian.sh |
npm install
npm start # Live-Preview im Browser
npm run build # Build nach dist/PITCHME.md- HauptpraesentationCheatSheet.md- Kurzreferenz SQL → Shellwork/- Beispieldaten und Skripte
Basiert auf SQL in the Shell von Matt Might.