Em JDBC, sua instrução SQL não deve ser encerrada por ponto e vírgula.
Mudar
String command = "SELECT distinct fname, lname, student_id FROM student"+
" where degree='"+ degree + "';";
para
String command = "SELECT distinct fname, lname, student_id FROM student"+
" where degree='"+ degree + "'";