Oracle无效标识符不理解字符串

Oracle无效标识符不理解字符串,第1张

Oracle无效标识符不理解字符串

在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 + "'";


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5507496.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-13
下一篇 2022-12-13

发表评论

登录后才能评论

评论列表(0条)

保存