JDBC में आपके SQL कथन को अर्धविराम द्वारा समाप्त नहीं किया जाना चाहिए।
बदलें
String command = "SELECT distinct fname, lname, student_id FROM student"+
" where degree='"+ degree + "';";
करने के लिए
String command = "SELECT distinct fname, lname, student_id FROM student"+
" where degree='"+ degree + "'";