https://github.com/himanshu-uike/university-registration-db
Mysql
https://github.com/himanshu-uike/university-registration-db
data-science mysql mysql-database
Last synced: 13 days ago
JSON representation
Mysql
- Host: GitHub
- URL: https://github.com/himanshu-uike/university-registration-db
- Owner: himanshu-uike
- 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-12-29T20:10:39.822Z (7 months 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