I need a better understanding of first normalized form. I see lots of problems with this in 2nf and 3nf, but I'm confused on how to get this to just 1st normalized form. (I'm not creating an actual table just shorthand notation)
DEPARTMENT (DEPT_ID, DEPT_NAME)
ADVISOR (ADVISOR_ID, ADVISOR_LAST_NAME, ADVISOR_FIRST_NAME, DEPT_ID)
COURSE( COURSE_ID, COURSE_DESCP)
STUDENT (STUDENT_ID, STUDENT_FIRST_NAME, STUDENT_LAST_NAME, COURSE_ID,
COURSE_DESCP, GRADE, ADVISOR_ID, ADVISOR_FIRST_NAME, ADVISOR_LAST NAME)