https://github.com/himuike/university-registration-db
Mysql
https://github.com/himuike/university-registration-db
data-science mysql mysql-database
Last synced: about 1 year ago
JSON representation
Mysql
- Host: GitHub
- URL: https://github.com/himuike/university-registration-db
- Owner: Himuike
- License: gpl-3.0
- Created: 2025-03-29T07:15:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-29T07:42:06.000Z (over 1 year ago)
- Last Synced: 2025-04-08T04:37:24.118Z (over 1 year ago)
- Topics: data-science, mysql, mysql-database
- Homepage:
- Size: 2.92 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# University Registration Database System
A comprehensive MySQL database for managing university registrations, courses, students, and faculty.
## Features
- Student enrollment tracking
- Course management with prerequisites
- Faculty assignment
- Class scheduling
## Database Schema

## Setup
1. Create database:
```sql
CREATE DATABASE UniversityRegistrationSystem;
USE UniversityRegistrationSystem;
2. Run schema:
mysql -u username -p UniversityRegistrationSystem < database/schema.sql
3. Load sample data:
mysql -u username -p UniversityRegistrationSystem < database/sample_data.sql