Trong JDBC, câu lệnh SQL của bạn không được kết thúc bằng dấu chấm phẩy.
Thay đổi
String command = "SELECT distinct fname, lname, student_id FROM student"+
" where degree='"+ degree + "';";
đến
String command = "SELECT distinct fname, lname, student_id FROM student"+
" where degree='"+ degree + "'";