Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions sql/260627.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/*
- 간호대학, 경영대학, 자유전공학부 소속동아리의 college_major_id 업데이트
*/

UPDATE club
SET college_major_id = cm.id
FROM college_major cm
WHERE club.college = cm.college
AND club.affiliation_type = '소속동아리'
AND club.college IN ('간호대학', '경영대학', '자유전공학부');
Loading