Student Club Database

This database contains information about a student club, including members, events, finances, and attendance records.

Below are the tables in the database with their schema definitions and sample data.

Database Explorer

major 0 records

Academic majors of club members

No data available for this table.
member 0 records

Club member profile information

No data available for this table.
zip_code 0 records

Geographic information for member locations

No data available for this table.
event 0 records

Club events and activities

No data available for this table.
attendance 0 records

Event attendance records

No data available for this table.
budget 0 records

Budget allocations for events

No data available for this table.
income 0 records

Club income and funding sources

No data available for this table.
expense 0 records

Expense records for club activities

No data available for this table.
major
Column Type
major_id text
major_name text
department text
college text
member
Column Type
member_id text
first_name text
last_name text
email text
position text
t_shirt_size text
phone text
zip integer
link_to_major text
zip_code
Column Type
zip_code integer
type text
city text
county text
state text
short_state text
event
Column Type
event_id text
event_name text
event_date text
type text
notes text
location text
status text
attendance
Column Type
link_to_event text
link_to_member text
budget
Column Type
budget_id text
category text
amount real
link_to_event text
income
Column Type
income_id text
date_received text
amount integer
source text
notes text
link_to_member text
expense
Column Type
expense_id text
expense_description text
expense_date text
cost real
approved text
link_to_member text
link_to_budget text
Entity-Relationship Diagram

ER diagram showing relationships between tables:

  • member references major through link_to_major
  • member references zip_code through zip
  • attendance references member through link_to_member
  • attendance references event through link_to_event
  • income references member through link_to_member
  • budget references event through link_to_event
  • expense references member through link_to_member
  • expense references budget through link_to_budget