-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
43 lines (34 loc) · 1.46 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# University Management System - SQL Project
This project is a **University Management System** built using SQL with a focus on handling students, departments, courses, instructors, exams, attendance, and library management. The project is designed to work on a **XAMPP server** and uses MySQL as the database.
## Features
- **Student Management**: Handles student information and their relationship with departments.
- **Course Enrollment**: Manages courses, instructors, and student enrollments.
- **Library System**: Tracks book issues and returns through library transactions.
- **Result Management**: Tracks exam results and student performance.
- **Attendance Tracking**: Monitors student attendance records.
## Database Structure
The database includes the following tables:
- **Student**
- **Department**
- **Course**
- **Instructor**
- **Subject**
- **Batch**
- **Enrollment**
- **Result**
- **Exam**
- **Attendance**
- **Library**
- **Library Transaction**
## Queries
The project includes SQL queries for:
- Aliases, AVG, SUM, MAX, MIN, COUNT
- Inserting and updating data
- Filtering data using WHERE, LIKE, BETWEEN, and more
## Installation
1. Set up **XAMPP** and start Apache and MySQL servers.
2. Import the SQL file provided to create the database schema.
3. Adjust the database configurations as needed.
4. Use the `requirements.txt` to install any required Python libraries if applicable.
```bash
pip install -r requirements.txt