Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jevxtn/sql-101
SQL 101: A beginner-friendly guide to understanding and working with SQL. This repository covers the basics of SQL syntax, queries, and database management, providing hands-on exercises and examples to help you build a solid foundation in SQL.
https://github.com/jevxtn/sql-101
query sql sql-query sqlite-database
Last synced: 12 days ago
JSON representation
SQL 101: A beginner-friendly guide to understanding and working with SQL. This repository covers the basics of SQL syntax, queries, and database management, providing hands-on exercises and examples to help you build a solid foundation in SQL.
- Host: GitHub
- URL: https://github.com/jevxtn/sql-101
- Owner: Jevxtn
- Created: 2024-08-10T06:52:32.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-10T07:12:13.000Z (6 months ago)
- Last Synced: 2024-11-19T10:31:52.610Z (2 months ago)
- Topics: query, sql, sql-query, sqlite-database
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
SQL 🛢️ 101
GitHub repo with beginner-friendly problems in SQL
Welcome to SQL GitHub repo! We are super excited to have you. Feel free to make pull requests to add your own twists on the exercises!
### Website: https://en.wikipedia.org/wiki/SQL
## Queries
- [`introduction.sql`](https://github.com/Jevxtn/SQL-101/blob/main/sql-101-main/1-queries/01_introduction.sql)
- [`select.sql`](https://github.com/Jevxtn/SQL-101/blob/main/sql-101-main/1-queries/02_select.sql)
- [`streaming_wars.sql`](https://github.com/Jevxtn/SQL-101/blob/main/sql-101-main/1-queries/03_streaming_wars.sql)
- [`rotten_tomatoes.sql`](https://github.com/Jevxtn/SQL-101/blob/main/1-queries/04_rotten_tomatoes.sql)
- [`like.sql`](https://github.com/Jevxtn/SQL-101/blob/main/1-queries/05_like.sql)
- [`golden_age.sql`](https://github.com/Jevxtn/SQL-101/blob/main/1-queries/06_golden_age.sql)
- [`order_by.sql`](https://github.com/Jevxtn/SQL-101/blob/main/1-queries/07_order_by.sql)
- [`nyc_restaurants.sql`](https://github.com/Jevxtn/SQL-101/blob/main/1-queries/08_nyc_restaurants.sql)## Aggregates
- [`music_playlist.sql`](https://github.com/Jevxtn/SQL-101/blob/main/2-aggregates/09_music_playlist.sql)
- [`counting_rows.sql`](https://github.com/Jevxtn/SQL-101/blob/main/2-aggregates/10_counting_rows.sql)
- [`old_new.sql`](https://github.com/Jevxtn/SQL-101/blob/main/2-aggregates/11_old_new.sql)
- [`total_playtime.sql`](https://github.com/Jevxtn/SQL-101/blob/main/2-aggregates/12_total_playtime.sql)
- [`billboard_hot_100.sql`](https://github.com/Jevxtn/SQL-101/blob/main/2-aggregates/13_billboard_hot_100.sql)
- [`group_by.sql`](https://github.com/Jevxtn/SQL-101/blob/main/2-aggregates/14_group_by.sql)
- [`video_games.sql`](https://github.com/Jevxtn/SQL-101/blob/main/2-aggregates/15_video_games.sql)---