Completed assignments for the database course at NSU.
Entities:
- Table "Authors":
- Author ID (Primary Key)
- First Name
- Last Name
- Middle Name
- Alias
- Table "Songs":
- Song ID (PK)
- Title
- Table "Roles":
- Role ID (PK)
- Role Name (composer, lyricist, performer, etc.)
- Table "Authors-Roles-Songs":
- Author ID (FK to Author ID in the "Authors" table)
- Song ID (FK to Song ID in the "Songs" table)
- Role ID (FK to Role ID in the "Roles" table)
- Table "Disks":
- Disk ID (PK)
- Disk Title
- Table "Disks-Songs":
- Disk ID (FK to Disk ID in the "Disks" table)
- Song ID (FK to Song ID in the "Songs" table)