
[일정 관리 앱 만들기] 트러블 슈팅
·
백엔드 부트캠프/문제풀이
1️⃣ API 작성2️⃣ ERD 작성1) 필수 과제 ERD2) 도전 과제 ERD3️⃣ SQL 문-- author TABLE SQLcreate table author( id bigint auto_increment comment '작성자 식별자' primary key, name char(10) null comment '작성자명', email char(100) null comment '이메일', created datetime null comment '작성일', updated datetime null comment '수정일', constraint check_name check (true));-- plan TABLE SQLcreate..