SQL_Data_Engineering_Course

(★ 87)

My 'SQL for Data Engineering' course on YouTube!

File Explorer

  • .gitignore
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

duckdb

View Details ▼

Client for DuckDB, an in-process analytical SQL engine.

duckdb

Start an interactive shell with a transient in-memory database:

duckdb {{path/to/dbfile}}

Start an interactive shell on a database file. If the file does not exist, a new database is created:

duckdb -c "{{SELECT * FROM 'data_source.[csv|csv.gz|json|json.gz|parquet]'}}"

Query a CSV, JSON, or Parquet file using SQL:

// repository documentation