Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 856 Bytes

File metadata and controls

36 lines (25 loc) · 856 Bytes

SQL in the Shell

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

Entwicklung

npm install
npm start          # Live-Preview im Browser
npm run build      # Build nach dist/

Dateien

  • PITCHME.md - Hauptpraesentation
  • CheatSheet.md - Kurzreferenz SQL → Shell
  • work/ - Beispieldaten und Skripte

Inspiration

Basiert auf SQL in the Shell von Matt Might.

Lizenz

WTFPL