oracle ORA-00911: 无效字符
StringsqlSelectStr="insertintoscott.username(accounts,password,role)selectscott.stud....
String sqlSelectStr = "insert into scott.username (accounts,password,role)select scott.stud.stuid," +
"scott.stud.stubirthday,0 from scott.stud " +
"where scott.stud.stuid in(select scott.stud.stuid from scott.stud where scott.stud.stuid not in (select scott.username.accounts from scott.username where role=0));";
//conn已经定义
Statement petmtAlter = conn.createStatement();
petmtAlter.executeUpdate(sqlSelectStr);
运行的时候,出现 ORA-00911: 无效字符
急急急急急急急!
我设的字段都是varchar2类型。
而且在sqlplus下可以执行,但是在java程序下,就报错误
ORA-00911: 无效字符 展开
"scott.stud.stubirthday,0 from scott.stud " +
"where scott.stud.stuid in(select scott.stud.stuid from scott.stud where scott.stud.stuid not in (select scott.username.accounts from scott.username where role=0));";
//conn已经定义
Statement petmtAlter = conn.createStatement();
petmtAlter.executeUpdate(sqlSelectStr);
运行的时候,出现 ORA-00911: 无效字符
急急急急急急急!
我设的字段都是varchar2类型。
而且在sqlplus下可以执行,但是在java程序下,就报错误
ORA-00911: 无效字符 展开
3个回答
展开全部
第二行的
scott.stud.stubirthday
改成
to_char(scott.stud.stubirthday,'yyyymmdd')
这样试试
scott.stud.stubirthday
改成
to_char(scott.stud.stubirthday,'yyyymmdd')
这样试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
mafangsan | 九级 的观点很好
另一个表多次出现,没用别名,有问题。
另一个表多次出现,没用别名,有问题。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询