https://github.com/znev434/sql_basic
Beginner-friendly SQL and SQLite project in Python – creating a database, adding data, and retrieving records.
https://github.com/znev434/sql_basic
data-science database mysql postgresql query sql sqlite3
Last synced: 2 months ago
JSON representation
Beginner-friendly SQL and SQLite project in Python – creating a database, adding data, and retrieving records.
- Host: GitHub
- URL: https://github.com/znev434/sql_basic
- Owner: Znev434
- License: mit
- Created: 2025-02-22T00:01:35.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-22T16:43:59.000Z (over 1 year ago)
- Last Synced: 2025-03-15T05:56:12.769Z (over 1 year ago)
- Topics: data-science, database, mysql, postgresql, query, sql, sqlite3
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 📚 SQL Project: Library
## 🎯 Project Overview
This project demonstrates the fundamentals of working with **SQLite** databases in Python.
It covers creating a **Library** database, inserting book records, and executing SQL queries.
## 📁 Project Structure
- `tworz_baze.py` – Initializes the SQLite database and creates the `Ksiazki` table.
- `dodaj_dane.py` – Adds book records to the database.
- `zapytania.py` – Retrieves and displays book records.
- `Biblioteka.db` – SQLite database file (automatically generated).
- `README.md` – Project documentation.
## 🏆 Skills Demonstrated
- ✅ Designing and creating SQL tables
- ✅ Inserting records into a database
- ✅ Retrieving and filtering records using SQL queries
- ✅ Integrating SQLite with Python