
프로젝트
[야구 관리 프로그램] - 테이블 설계(1)
미니프로젝트 1 - 야구 관리 프로그램.pdf - Google Drive 미니프로젝트 1 - 야구 관리 프로그램.pdf drive.google.com 야구장 테이블(3개) create table stadium ( id integer primary key auto_increment, name varchar(255), created_at timestamp ); 팀 테이블(3팀) create table team ( id integer primary key auto_increment, stadium_id integer, name varchar(255), created_at timestamp, foreign key (stadium_id) references stadium(id) ); 선수 테이블(9명) creat..