In JDBC sollte Ihre SQL-Anweisung nicht mit einem Semikolon abgeschlossen werden.
Ändern
String command = "SELECT distinct fname, lname, student_id FROM student"+
" where degree='"+ degree + "';";
zu
String command = "SELECT distinct fname, lname, student_id FROM student"+
" where degree='"+ degree + "'";